Cod sursa(job #388728)

Utilizator NorthGBYX si Y NorthGBY Data 30 ianuarie 2010 19:54:36
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include<iostream.h>
int a;
int b;
int c;
{
	freopen("problema1.in","r",stdin);
	freopen("problema1.out","w",stdout);
	
	scanf("%d",&a);
	scanf("%d",&b);
	a+b=c;
	
	printf("%d/n",a+b);
	
	return 0;
}