Cod sursa(job #67419)
Utilizator | Data | 24 iunie 2007 16:02:00 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <fstream.h>
int main()
{
ifstream fin("suma.in");
ofstream fout("suma.out");
long long a,b,c;
fin>>a>>b;
c=a+b;
fout<<c;
fin.close();
fout.close();
return 0;
}