how to create a program which multiplies and determines if a number, n, is prime. A prime number has only two factors. Your program should work with any input for n where n >= 0 and n <= 127. If the number is prime, then print the letter Y to the display, otherwise print the letter N. The following example has n = 5 and should print Y since n is a prime number.