Cod sursa(job #2180572)

Utilizator liviu_gheorghe1234Liviu Gheorghe liviu_gheorghe1234 Data 20 martie 2018 22:51:33
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <fstream>
using namespace std;
    ifstream f("adunare.in");
    ofstream g("adumare.out");
int main ()
{
    long long  a,b;
    f>>a>>b;
    g<<a+b;
    return 0;
}