Cod sursa(job #1142577)

Utilizator mihail2Dan UVT mihail2 Data 13 martie 2014 22:42:42
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <fstream>
using namespace std;
int main()
{
    ifstream f("adunare.in");
    ofstream g("adunare.out");
    unsigned long a,b;
    f>>a>>b;
    g<<a+b;
}