# Read the number of kilopascals from the user kPa = float(input("Enter a pressure in kPa: ")) # Convert to the other units of pressure mmHg = atm * 760 atm = kPa / 101.325 # Compute the number of atmospheres psi = atm * 14.6959 # Display the results print(kPa, "is equal to", mmHg, "mmHg") print(kPa, "is equal to", atm, "atmospheres") print(kPa, "is equal to", psi, "pounds per square inch")