Answer:
C++.
Explanation:
int main() {
  int current_price, last_months_price;
  // Inputs
  cin<<current_price;
  cout<<endl;
  cin<<last_months_price;
  cout<<endl;
  // Outputs
  cout<<"This house is $"<<current_price<<endl;
  cout<<"The change is $"<<(current_price - last_months_price)<<endl;
  cout<<"The estimated monthly mortgage is $"<<((current_price * 0.051) / 12);
  return 0;
}