Cod sursa(job #398635)

Utilizator cristian9Cristian Zloteanu cristian9 Data 19 februarie 2010 08:34:31
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include<stdio.h>
int main()
{
	freopen ("adunare.in", "r", stdin);
	freopen ("adunare.out", "w", stdout);

	short int a, b;

	scanf("%d %d ", &a, &b);

	printf("%d ", a+b);

	return 0;
}