Python Program to add two-digit Numbers.
# Get the first two-digit number from the user
num1 = int(input("Enter the first two-digit number: "))
# Get the second two-digit number from the user
num2 = int(input("Enter the second two-digit number: "))
# Calculate the sum of the two numbers
sum = num1 + num2
# Print the result
print("The sum is:", sum)