Cod sursa(job #2324132)
| Utilizator | Data | 20 ianuarie 2019 12:09:48 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.14 kb |
#include <iostream>
#include <fstream>
int main(){
ifstream f("adunare.in");
ofstream g("adunare.out");
int a,b;
f>>a>>b;
g<<a+b;
return 0;
}
