Cod sursa(job #359281)

Utilizator bocacristiBoca Nelu Cristian bocacristi Data 26 octombrie 2009 15:01:29
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.15 kb
#include <iostream.h>
#include <stdio.h>

int main()
{
	int a = 0, b = 0;
	ifstream fin("adunare.in");
	fin >> a >> b;
	fout << a+b;

	return 0;
}