Cod sursa(job #456547)

Utilizator Athena99Anghel Anca Athena99 Data 15 mai 2010 21:45:07
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <stdio.h>

int a,b;

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