Cod sursa(job #1597477)

Utilizator Pley01Nitu Madalin Pley01 Data 12 februarie 2016 00:13:36
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include<iostream>
#include<fstream>
using namespace std;

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

}