Cod sursa(job #1112059)

Utilizator albi43Alex Vasilache albi43 Data 19 februarie 2014 13:10:07
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <fstream>

using namespace std;

ifstream fin("a+b.in");
ofstream fout("a+b.out");

int a,b;
int main()
{
    fin>>a>>b;
    fout<<a+b;
    fout.close();
    return 0;
}