Cod sursa(job #889061)
Utilizator | Data | 24 februarie 2013 12:39:01 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
long long a,b;
f>>a>>b;
f.close();
g<<a+b<<endl;
g.close();
}