Explore Library
Code QuizBeginner

Reading Input with input()

Identify the type bug when doing math on input().

Codepython
num = input("Enter a number: ")
print(num + 10)

What is the bug in this code?