Cod sursa(job #2307446)

Utilizator GunShyOmegaMarinescu MIhnea Ionut GunShyOmega Data 24 decembrie 2018 17:00:54
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.2 kb
#include<fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int a,b;
int main()
{

fin >> a >> b;
fin.close();
fout << a+b;
fout.close();
return 0;
}