Cod sursa(job #2471600)

Utilizator NavadaruCalinNavadaru Calin NavadaruCalin Data 11 octombrie 2019 09:57:18
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.24 kb
#include <iostream>
#include <fstream>
using namespace std;

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

int main()
{
    int a , b;
    f >> a >> b ;
    long long int s = 0;
    s=a+b;
    g << s;
    return 0;
}