Cod sursa(job #561607)
| Utilizator | Data | 20 martie 2011 20:52:53 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Lista lui wefgef | 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;
}
