Cod sursa(job #1518748)

Utilizator iRewiewerAndrei Pop iRewiewer Data 6 noiembrie 2015 12:24:59
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <iostream>
#include <fstream>

using namespace std;

int main()
{
    int a,b;
    ifstream fi("adunare.in");
    ofstream fo("adunare.out");
    fi>>a>>b;
    fo<<a+b;
}