Cod sursa(job #2025795)

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