Which of the following inputs to the program below would return a print statement containing Your number:
try:
my_number = int(input("Enter an integer: "))
print "Your number: " + str(my_number)
except ValueError:
print "That wasn't an integer!"
A) 42.5
B) abc
C) 123
D) -7