Cod sursa(job #197950)

Utilizator alex.cepoiAlexandru Cepoi alex.cepoi Data 7 iulie 2008 13:25:25
Problema A+B Scor 100
Compilator c Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <stdio.h>

int main()
{
	freopen ("adunare.in", "r", stdin);
	freopen ("adunare.out", "w", stdout);
	
	long a, b;
	scanf ("%ld%ld", &a, &b);
	printf ("%ld", a+b);
	fclose(stdin);
	fclose(stdout);
	return 0;
}