Write a program that asks the user for a positive integer height. If they enter an illegal value, they must be prompted to enter a good one until they do. It then prints an equilateral right triangle of stars of that height. For example, if the height is 5, the program should print:
a) height = 3
b) height = 4
c) height = 6
d) height = 7