Cod sursa(job #2261852)
Utilizator | Data | 16 octombrie 2018 19:14:12 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <fstream>
using namespace std;
int main()
{
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int a, b, s;
fin >> a >> b;
s = a + b;
fout << s;
return 0;
}