Cod sursa(job #2335229)
Utilizator | Data | 3 februarie 2019 19:38:24 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream fin ("Adunare.in");
ofstream fout ("Adunare.out");
int a, b, s;
int main()
{
fin >> a >> b;
s = a + b;
fout << s;
return 0;
}