Cod sursa(job #693374)
Utilizator | Data | 27 februarie 2012 12:01:52 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include<fstream.h>
int main()
{
ifstream in("adunare.in");
ofstream out("adunare.out");
int a,b;
long long s;
in>>a>>b;
s=a+b;
out<<s;
in.close();
out.close();
return 0;
}