Cod sursa(job #1011858)

Utilizator VehuiahVehuiah Vehuiah Vehuiah Data 17 octombrie 2013 17:30:38
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include<fstream>
using namespace std;
ifstream i("adunare.in");
ofstream o("adunare.out");

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