Cod sursa(job #1450374)

Utilizator theweekndVictor theweeknd Data 12 iunie 2015 23:08:23
Problema A+B Scor 100
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");
    ofstream fout("adunare.out");
    int a,b;
    fin>>a;
    fin>>b;
    fout<<a+b;
}