Cod sursa(job #1011857)

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

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