Cod sursa(job #247590)
| Utilizator | Data | 23 ianuarie 2009 12:41:34 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.16 kb |
#include <fstream.h>
int main()
{ifstream in("adunare.in");
ofstream out("adunare.out");
int a,b,s;
in>>a>>b;
s=a+b;
out<<s;
in.close;
out.close;
return 0;}
