Cod sursa(job #1467155)
Utilizator | Data | 2 august 2015 22:41:18 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream f("adunare.in");
long int a, b;
f >> a >> b;
f.close();
ofstream ff("adunare.out");
ff << a+b;
ff.close();
return 0;
}