Cod sursa(job #561606)
Utilizator | Data | 20 martie 2011 20:52:33 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.25 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int x,y;
fin>>x>>y;
fout<<x+y<<"\n";
fin.close();
fout.close();
return 0;
}