Cod sursa(job #999142)

Utilizator KiralyCraftKiraly Alex KiralyCraft Data 19 septembrie 2013 13:39:23
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <iostream>
#include <fstream>
using namespace std;

int main()
{
    int a,b;
    fstream fin("trapez.in",ios::in);
    fstream fout("trapez.out",ios::out);
    fin >> a >> b;
    fout << a+b;
}