Cod sursa(job #2422152)

Utilizator tudose_bogdanTudose Bogdan tudose_bogdan Data 17 mai 2019 16:22:47
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <iostream>
#include <fstream>
using namespace std;

ifstream f("adunare.in");
ofstream g("adunare.out");

int main()
{
  long long a,b;
f>>a>>b;
g<<a+b;

return 0;
}