import java.util.Scanner;
public class NegativePositive {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
//A welcome message to the program
System.out.println("Welcome to the 'Is NEGATIVE or POSITIVE?' program! ");
System.out.println("Type any number: ");
double n = input.nextDouble();
if (n >= 0) {
System.out.println( n + " is a POSITIVE number");
}
else {
System.out.println(n + " is a NEGATIVE number");
}
}
}