Cod sursa(job #508507)
Utilizator | Data | 8 decembrie 2010 18:42:04 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
unsigned long long a,b;
int main()
{f>>a>>b; g<<a+b; g.close(); f.close();return 0;}