Cod sursa(job #710154)
Utilizator | Data | 9 martie 2012 08:36:14 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<fstream>
using namespace std;
int main()
{int a,b;
ifstream f ("adunare.in");
f>>a>>b;
ofstream g ("adunare.out");
g<<a<<" "<<b;
f.close();
g.close();
return 0;}