Cod sursa(job #2664117)

Utilizator CataCataCatalin Catalin CataCata Data 27 octombrie 2020 23:19:53
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.34 kb
// probleme pbinfo etc.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");

int main()
{
    int a;
    int b;
    fin >> a;
    fin >> b;
    fout << a + b;
    return 0;
}