Answer:
firstName=input("Enter your first name: ")
studyHours=float(input("Enter your expected study hours on Saturday: "))
print("Hello, " + firstNme + "! On Saturday, you need to study " + str(int(studyHours) * 3)) + " hours for the exam."
Step-by-step explanation: