Cod sursa(job #1343965)

Utilizator gmandresiForin Mihalache gmandresi Data 16 februarie 2015 03:51:44
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.29 kb
/*
 * main.cpp
 *
 *  Created on: Feb 16, 2015
 *      Author: levi
 */

#include <fstream>
using namespace std;

int main() {
	ifstream fin;
	ofstream fout;

	fin.open("adunare.in");
	fout.open("adunare.out");

	int a,b;
	fin >> a >> b;
	fout << a+b;

	fin.close();
	fout.close();
	return 0;
}