How to treat raw_input variables as integers [closed]

In your code, a, b and c are strings rather than integers.

Change

a = raw_input(int)    

to

a = int(raw_input())

etc.

Leave a Comment