i was making a program to add the numbers of two given input but the number am giving they are getting joined instead of getting added, below is my code.
print("enter 1st no.")
no1 = input(int())
print("enter 2nd no.")
no2 = input(int())
print (int(no1 ++ no2))
i putted 1 and 2 in the input and am getting result as 12 instead of 3 please help me.