Cod sursa(job #286883)
Utilizator | Data | 24 martie 2009 11:54:56 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | aa | Marime | 0.2 kb |
#include<fstream>
using namespace std;
ifstream f ("adunare.in");
ofstream g ("adunare.out");
int main()
{
unsigned a,b;
f>>a>>b;
g<<a+b<<"\n";
g.close();
return 0;
}