Cod sursa(job #1107804)
| Utilizator | Data | 14 februarie 2014 12:16:00 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<fstream>
using namespace std;
int a,b;
int main()
{
ifstream f("ex.in");
ofstream g("ex.out");
f>>a>>b;
g<<a+b;
return 0;
}
