Cod sursa(job #1387497)

Utilizator stefanzaharieZaharie Stefan stefanzaharie Data 14 martie 2015 12:05:20
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <iostream>
#include <fstream>
using namespace std;

int main()
{
    ifstream f("adunare.in");
    ofstream g("adunare.out");
   unsigned long long a,b,s;
   f>>a>>b;
   s=a+b;
   g<<s;

}