Cod sursa(job #761763)

Utilizator MtkMarianHagrSnaf MtkMarian Data 27 iunie 2012 13:39:04
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.24 kb
#include<fstream.h>
using namespace std;
int main ()
{
    ifstream f("adunare.in");
    ofstream g("adunare.out");
    long a,b;
    f>>a>>b;
    g<<a+b;
    f.close();
    g.close();
    system("pause");
    return 0;
}