Cod sursa(job #273934)
Utilizator | Data | 9 martie 2009 11:13:02 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<fstream.h>
int main()
{long long a,b,c;
ifstream in("adunare.in");
ofstream out("adunare.out");
in>>a>>b;
c=a+b;
out<<c;
in.close();
out.close();
return 0;}