I do not know why this is saying it is wrong when it isn't. I enter the correct answer and it says that is not correct the correct answer is what i inputted
import random
x = 1
score = 0
num = 1
while x == 1:
    a = random.randint(10, 201)
    b = random.randint(1, 201)
    a = int(a)
    b = int(b)
    c = a / 100 * b
    print ("What is")
    print (b)
    print ("% of")
    print (a)
    num = input()
    if c is num :
        print ("Well done!")
        score = score + 1
    elif c != num :
        print ("That is not correct, the correct answer is ", c)
 
     
     
    