Cod sursa(job #33302)
Utilizator | Data | 19 martie 2007 09:44:06 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include<fstream.h>
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{unsigned long a,b,c;
fin>>a;
fin>>b;
c=a+b;
fout<<c;
fin.close();
fout.close();
return 0;
}