x = 36
y = 9
# Divide x by y
division_result = x / y
print("Result of division:", division_result)
# Multiply x and y
multiplication_result = x * y
print("Result of multiplication:", multiplication_result)
Result of division: 4.0
Result of multiplication: 324
name = input("What is your name? ")
gender = input("What is your gender? ")
print("Name:", name)
print("Gender:", gender)
Name: John
Gender: Male