Cod sursa(job #2205142)

Utilizator CostelToaderToader Constantin CostelToader Data 18 mai 2018 08:40:16
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <iostream>
#include <fstream>

using namespace std;

int main()
{
	int a, b, c;
	ifstream fin("adunare.in");
	ofstream fout("adunare.out");
	fin >> a >> b;
	fout << a + b;
}