#include <stdio.h>
#include <stdlib.h>

float numero;

int main() {
	printf("Introduce un numero");
	scanf("%f", &numero);
	
	if(numero <0) {
		printf("\n Es un numero negativo");
		printf("\n");
		
	} else { 
		printf("\ Es un numero positivo");
		printf("\n");
	}
	system ("pause");
	// your code goes here
	return 0;
}
