Cod sursa(job #1338170)
| Utilizator | Data | 9 februarie 2015 20:38:21 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.16 kb |
#include <fstream>
ifstream fin ("adunare.in");
ofstream fout("adunare.out");
int main(){
int a, b;
fin >> a >> b;
fout << a+b << " ";
return 0;
}