Cod sursa(job #1910643)
Utilizator | Data | 7 martie 2017 17:45:37 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
int x, y;
ifstream f("adunare.in");
ofstream g("adunare.out");
f >> x >> y;
g << x + y;
system("pause");
}