Cod sursa(job #1640638)

Utilizator johnnyshrewdIoan Ghisoi johnnyshrewd Data 8 martie 2016 18:44:18
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <iostream>
#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;
}