Cod sursa(job #1984526)

Utilizator logix94LOGIX X logix94 Data 25 mai 2017 03:09:57
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.24 kb
#include <fstream>

using namespace std;

ifstream in("adunare.in");
ofstream out("adunare.out");

int main()
{
    int firstNo, secondNo;

    in >> firstNo;
    in >> secondNo;

    out << firstNo+secondNo;

    return 0;
}