Cod sursa(job #1569279)

Utilizator xandruGuzun Alexandru xandru Data 15 ianuarie 2016 11:43:46
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 fin ("adunare.in");
ofstream fout("adunare.out");

fin>>a>>b;
fout<<a+b;
return 0;
}