File Viewer

Download
"""
This script takes two numbers as input from the user, calculates their sum, and displays the result.
"""

# Prompt the user to enter the first number
x = input("Type a number: ")

# Prompt the user to enter the second number
y = input("Type another number: ")

# Convert the input strings to integers and calculate their sum
sum = int(x) + int(y)

# Print the calculated sum
print("The sum is:", sum)