Cod sursa(job #471834)
Utilizator | Data | 21 iulie 2010 13:13:55 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
#include<fstream>
#include <iostream>
using namespace std;
int main()
{
ifstream f("adunare.in", ios::in);
ofstream g("adunare.out", ios::out);
long long a, b;
f >> a >>b;
g << a + b;
f.close();
g.close();
return 0;
}