Cod sursa(job #2146733)

Utilizator xtrzplayerCornea Radu Valentin xtrzplayer Data 28 februarie 2018 10:20:56
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main ()
{
    unsigned long long a, b;
    f >> a >> b;
    g << a + b;
}