Cod sursa(job #1433947)
| Utilizator | Data | 10 mai 2015 11:18:51 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | preitmarathon2015 | Marime | 0.16 kb |
#include <fstream>
using namespace std;
ifstream f("s.in");
ofstream g("s.out");
int main()
{
int x,y;
f>>x>>y;
g<<x+y;
return 0;
}
