Cod sursa(job #2252425)

Utilizator Khunor97Korpos Hunor Khunor97 Data 2 octombrie 2018 19:04:45
Problema A+B Scor 0
Compilator cpp Status done
Runda marpmi_2018 Marime 0.2 kb
#include <iostream>
#include <fstream>

using namespace std;

int main()
{
    int a, b;

    ifstream f("adunare.in");

    f >> a;
    f >> b;

    cout << a + b;

    return (0);
}