Cod sursa(job #724526)
Utilizator | Data | 26 martie 2012 17:06:47 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | teme_upb | Marime | 0.2 kb |
#include<iostream>
#include<fstream>
using namespace std;
int main()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
long a, b;
f>>a>>b;
g<<a+b;
f.close();
g.close();
return 0;
}