Cod sursa(job #1100777)

Utilizator LunguIoanAdrianLungu Ioan Adrian LunguIoanAdrian Data 7 februarie 2014 14:36:02
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.22 kb
#include <fstream>

using namespace std;

int main()
{
    int a,b;
    ifstream in("adunare.in");
    ofstream out("adunare.out");
    in >> a >> b;
    out<<a+b;
    in.close();
    out.close();
    return 0;
}