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