Cod sursa(job #646081)

Utilizator otto1Palaga Vicentiu-Octavian otto1 Data 10 decembrie 2011 20:06:18
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;
}