Cod sursa(job #761765)

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