Cod sursa(job #1161577)

Utilizator kentkool2011Mocanu Cristian kentkool2011 Data 31 martie 2014 12:21:50
Problema A+B Scor 100
Compilator cpp Status done
Runda teme_upb Marime 0.18 kb
#include<fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int a,b;
int main ()
{
    f>>a>>b;
    g<<a+b<<endl;
    g.close();
    return 0;
}