Cod sursa(job #1045438)

Utilizator matei140401Iorgulescu Matei matei140401 Data 1 decembrie 2013 16:39:03
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <iostream>
#include <fstream>

using namespace std;

int main()
{
    ifstream fin("A+B.in");
    ofstream fout("A+B.out");
    int a,b;
    fin>>a>>b;
    fout<<a+b;
    return 0;
}