#include <stdio.h>
int main() {
	int numero;
printf("Introduce un número: ");
scanf("%d", &numero);

if (numero>0) { 
printf ("%d", numero);
}
else {
printf("%d es negativo.",numero);
}
return 0;
}