Cod sursa(job #1097930)

Utilizator adi.adnan10Adi Adnan adi.adnan10 Data 4 februarie 2014 11:17:09
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.27 kb
// AddInfoArena.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include<fstream>
using namespace std;

ifstream f("adunare.in");
ofstream g("adunare.out");

int main()
{
	int a, b;
	f >> a >> b;
	g << a + b;
	return 0;
}