Cod sursa(job #1510933)
| Utilizator | Data | 25 octombrie 2015 19:53:54 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream>
using namespace std;
ifstream in("adun.in");
ofstream out("adun.out");
int y,x;
int main()
{
in>>x>>y;
out<<x+y;
in.close();
out.close();
}
