Cod sursa(job #2052708)
Utilizator | Data | 30 octombrie 2017 21:59:16 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.19 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream fin ("adunare.in");
ofstream fout("adunare.out");
int main()
{int a,b;
fin>>a>>b;
fout<<a+b;
return 0;
}