Cod sursa(job #93242)

Utilizator AlexRapeanuRapeanu Alexandru AlexRapeanu Data 18 octombrie 2007 09:34:16
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include<stdio.h>
int main() {
	int a,b;
	freopen("date.in","r",stdin);
	freopen("date.out","w",stdout);
	scanf("%d",&a);
	scanf("%d",&b);
	printf("%d",a+b);
	fclose(stdin);
	fclose(stdout);
	return 0;
}