This is the following code.The test2 function doesnt get invoked why? Even if i enter 1 the test2 fuction is not called
def test2():
    print("here i come")
def test1():
    x=input("hey ill take u to next fuction")
    if(x==1):
      test2()
test1()
 
     
    