Cod sursa(job #1948216)
Utilizator | Data | 31 martie 2017 21:16:40 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
#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 << '\n';
fin.close();
fout.close();
return 0;
}