Cod sursa(job #754889)
Utilizator | Data | 3 iunie 2012 21:43:18 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.14 kb |
#include<fstream>
int main()
{
ifstream f("A+B.in");
ofstream g("A+B.out");
long long a,b;
f>>a>>b;
g<<a+b<<'\n';
return 0;
}