Cod sursa(job #1418962)
| Utilizator | Data | 14 aprilie 2015 14:48:39 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | pre_oni_gim2015 | Marime | 0.17 kb |
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
int x,y;
f>>x>>y;
g<<x+y;
return 0;
}
