Cod sursa(job #683012)
| Utilizator | Data | 19 februarie 2012 20:47:05 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<iostream>
#include<fstream>
ifstream f("adunare.in");
ofstream g("adunare.out");
int a,b;
int main()
{ f>>a;
f>>b;
g<<a+b;
return 0;
}
