Cod sursa(job #627721)

Utilizator otto1Palaga Vicentiu-Octavian otto1 Data 30 octombrie 2011 15:32:19
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include<fstream>
using namespace std;
int A,B;
int main()
{ifstream i("adunare.in");
ofstream o("adunare.out");
i>>A>>B;
o<<A+B;
i.close();
o.close();
return 0;
}