Cod sursa(job #1637384)

Utilizator ionutmitracheMitrache Ionut Marian ionutmitrache Data 7 martie 2016 16:59:37
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <fstream>

using namespace std;

int main()
{long long unsigned int a,b;
ifstream x("adunare.in");
ofstream y("adunare.out");
x>>a;
x>>b;
y<<a+b;
    return 0;
}