Cod sursa(job #2198168)
Utilizator | Data | 23 aprilie 2018 20:03:20 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include<iostream>
#include<fstream>
using namespace std;
int main()
{
int a,b;
long s;
ifstream fin ("adunare.in");
ofstream fout ("adunare.out");
fin>>a>>b;
s=a+b;
fout<<s;
fin.close();
fout.close();
return 0;
}