Cod sursa(job #1450373)

Utilizator theweekndVictor theweeknd Data 12 iunie 2015 23:06:31
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <fstream>
#include <iostream>
using namespace std;
int main()
{
    ifstream fin("adunare.in");
    fstream fout("adunare.out");
    int a,b;
    fin>>a;
    fin>>b;
    cout<<a+b;
}