3. Enter the following code. (Type it exactly as it is written, except in the comments, use your name/ulid/section.)
# Author:
type your name here
# ULID/Section: type your ULID & lecture section # (1, 2 or 3)
# get user input of name
# then print user name to the shell (output) screen
myName = input("Enter your name: ")
print("Your name is", myName)
# get user input of Fahrenheit temperature
# compute Celsius temperature
# then print converted temperature to the shell (output) screen
tempF = eval (input("Enter a temperature in Fahrenheit: "))
tempC = (tempF - 32) * 5/9
print("That temperature in Celcius is", tempC)
print()