SyntaxFix
Write A Post
Hire A Developer
Questions
Your if statements are checking for int values. raw_input returns a string. Change the following line:
raw_input
tSizeAns = raw_input()
to
tSizeAns = int(raw_input())