Cod sursa(job #2578706)

Utilizator TyrasAndrei Cristian Vlad Tyras Data 11 martie 2020 14:30:52
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.3 kb
// EX_Coding.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, b;
	fin >> a >> b;
	fout << a + b;
	return 0;
}