Cod sursa(job #359283)

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

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

	return 0;
}