Cod sursa(job #1798228)
Utilizator | Data | 4 noiembrie 2016 23:20:19 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.15 kb |
#include<iostream>
int main(){
ifstream f(adunare.in);
ofstream g(adunare.out);
int a,b;
f>>a;
f>>b;
g<<a+b;
f.close();
g.close();
return 0;
}