Answer:
The program in Python is as follows:
currentPrice = int(input("Current: "))
lastMonth = int(input("Last Month: "))
print("The house is $",currentPrice)
print("The change is $",(currentPrice-lastMonth),"since last month")
print("The estimated monthly mortgage is $",(currentPrice * 0.051) / 12)
Explanation:
Get input for current price
currentPrice = int(input("Current: "))
Get input for last month price
lastMonth = int(input("Last Month: "))
Print current price
print("The house is $",currentPrice)
Print change since last month
print("The change is $",(currentPrice-lastMonth),"since last month")
Print mortgage
print("The estimated monthly mortgage is $",(currentPrice * 0.051) / 12)