Cod sursa(job #899957)
Utilizator | Data | 28 februarie 2013 17:04:17 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<fstream>
using namespace std;
int main()
{
int x,y;
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>x>>y;
g<<x+y;
}