Cod sursa(job #616440)

Utilizator emle98Emanuel Silivasan emle98 Data 12 octombrie 2011 16:48:41
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <iostream>
#include <fstream>
using namespace std;

ifstream f("adunare.in");

int main()
{
	int a,b;
	f >> a >> b;
	cout<<a+b;
	system("pause");
	return 0;
}