Cod sursa(job #1114369)

Utilizator TeofilosTeofil Teofilos Data 21 februarie 2014 15:58:13
Problema A+B Scor 100
Compilator cpp Status done
Runda Probleme 1 Marime 0.19 kb
#include <fstream>
using namespace std;
int a,b;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
    f>>a;
    f>>b;
    g<<a+b;
    g.close();
    return 0;
}