Cod sursa(job #2023403)

Utilizator Mihai98924Mihai Pop Mihai98924 Data 18 septembrie 2017 21:37:21
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.24 kb
#include <iostream>
#include <fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
    int x , y;
    fin >> x >> y;
    fout << x + y;
    fin.close();
    fout.close();
    return 0;
}