Cod sursa(job #2184401)
Utilizator | Data | 24 martie 2018 00:53:11 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<fstream>
using namespace std;
ifstream in ("adunare.in");
ofstream out ("adunare.out");
int a,b;
int main (void) {
in >> a >> b;
out << a+b;
return 0;
}