Cod sursa(job #898362)
Utilizator | Data | 28 februarie 2013 10:06:54 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
# include <fstream>
using namespace std;
int a,b;
long long x;
int main ()
{ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a>>b;
x=a+b;
g<<x;
g.close(); f.close();
return 0;
}