Cod sursa(job #543187)
Utilizator | Data | 27 februarie 2011 17:59:00 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<iostream.h>
long long a,b;
void main()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a;f>>b;
g<<a+b;
f.close();
g.close();
}