Cod sursa(job #254840)
Utilizator | Data | 7 februarie 2009 19:44:05 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.25 kb |
#include<fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
typedef unsigned long long int64 ;
int main()
{
unsigned long long a,b;
a=111111111111111111;
f>>a>>b;f.close();
g<<a+b;g.close();
return 0;
}