I'm beginning to learn coding on vscode with python and my code is this and it stacks the numbers.
num1 = input("Enter the first number:")
num2 = input("Enter the second number:")
sum = num1 + num2
print(sum)
and my terminal is
Enter the first number:10
Enter the second number:10
1010
PS C:\Users\Big Chungus\Desktop\python>