Cod sursa(job #88885)

Utilizator Hackers0rStanoaia Sorin Alexandru Hackers0r Data 4 octombrie 2007 18:19:53
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.11 kb
#include<stdio.h>
int main () {
	int a,b,x;
	scanf("%d%d",&a,&b);
	x=a+b;
	printf("%d",x);
	return 0;
}