Write a program to compute and display the height in feet and inches form. The user will enter the height in inches, and the output will display height converted into feet and inches. For Example: A person that is 77 inches should display as 6 ft 5 in

Hint: Use integer division (/) for the feet, and calculate the remainder using the modulus operator (%) to get the remaining inches.

c++