Cod sursa(job #1375358)
| Utilizator | Data | 5 martie 2015 13:03:10 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.16 kb |
#include <fstream>
using namespace std;
int a,b;
int main(){
ifstream fin("adunare.in");
ofstream fout("adunare.out");
fin >> a >> b;
fout << a+b;
}
