Cod sursa(job #1262336)

Utilizator petre2015Trusca Petre petre2015 Data 13 noiembrie 2014 08:42:01
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include<fstream>
using namespace std;
int main(){
ifstream f("adunare.in");
ofstream g("adunare.out");
int x,y;
f>>x;
f>>y;
g<<x+y;
f.close();
g.close();
return 0;
}