Cod sursa(job #1126009)

Utilizator viftode4Iftode Vlad viftode4 Data 26 februarie 2014 20:45:18
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <fstream>
using namespace std;
ifstream fin("a+b.in");
ofstream fout("a+b.out");
long a, b;
int main()
{fin>>a>>b;
fout<<a+b;
fout.close();
    return 0;
}