Cod sursa(job #341287)
Utilizator | Data | 17 august 2009 22:52:29 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.18 kb |
#include <fstream>
std::ifstream in("adunare.in");
std::ofstream out("adunare.out");
int main ()
{
long long a,b;
in>>a>>b;
out<<a+b;
in.close ();
out.close ();
return 0;
}