Cod sursa(job #562139)
Utilizator | Data | 22 martie 2011 13:50:10 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.16 kb |
#include<fstream.h>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int a,b;
int main()
{
f>>a;
f>>b;
g<<a+b;
return 0;
}