Cod sursa(job #1433955)
| Utilizator | Data | 10 mai 2015 11:20:08 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | preitmarathon2015 | 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;
}
