Cod sursa(job #386580)
Utilizator | Data | 25 ianuarie 2010 12:08:15 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | foxoi | Marime | 0.17 kb |
#include<fstrem.h>
ifstream f("adunare.in");
ofstream h("adunare.out");
long long a,b;
int main()
{
f>>a>>b;
h<<a+b;
h.close();
return 0;
}