Cod sursa(job #1248937)
Utilizator | Data | 26 octombrie 2014 11:31:38 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.19 kb |
#include <iostream>
#include <fstream>
using namespace std;
long long a,b;
ifstream f("adunare1.in");
ofstream g("adunare1.out");
int main()
{
f>>a>>b;
g<<a+b;
return 0;
}