Cod sursa(job #361516)
| Utilizator | Data | 5 noiembrie 2009 16:59:44 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.13 kb |
#include<fstream.h>
int main()
{
ifstream x("adunare.in");
ofstream y("adunare.out");
int a,b;
x>>a>>b;
y<<a+b;
return 0;
} 