Cod sursa(job #11964)
Utilizator | Data | 2 februarie 2007 14:52:01 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<fstream>
ifstream f("adunari.in");
ofstream g("adunari.out");
int main()
{unsigned long a,b,x;
f>>x;a=x;
f>>x;b=x;
f.close();
x=a+b;
g<<x;
g.close();
return 0;
}