Cod sursa(job #750165)

Utilizator buntomToma Alexandru buntom Data 21 mai 2012 08:20:24
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include<fstream>
#include<iostream>
using namespace std;
int main(void)
{ifstream a("adunare.in");
ofstream b("adunare.out");
int x,y;
a>>x>>y;
b<<x+y;
a.close();
b.close();
return 0;
}