Cod sursa(job #1495126)

Utilizator MihaiNGNeamt Mihai MihaiNG Data 2 octombrie 2015 17:24:18
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 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;
    return 0;
}