Cod sursa(job #1671107)

Utilizator MihneaGabrielMihnea-Gabriel Manolescu MihneaGabriel Data 1 aprilie 2016 12:35:39
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
long long s,a,b;
int main()
{
    f>>a;
    f>>b;
    s=a+b;
    g<<s;

}