Cod sursa(job #548644)
Utilizator | Data | 7 martie 2011 17:52:12 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.15 kb |
#include<fstream.h>
#include<iostream.h>
int main()
{int a,b;
ifstream f("adunare.in");
ofstream g("ADUNARE.OUT");
f>>a;
f>>b;
g<<a+b;
return 0;}