Cod sursa(job #1842352)

Utilizator gombos_raul10Gombos Raul gombos_raul10 Data 6 ianuarie 2017 20:49: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 a,b;
ifstream x("adunare.in");
ofstream y("adunare.out");
x>>a>>b;
y<<a+b;
    return 0;
}