ChamplainTechJournals/python-csi160/week02/Week-2Practice-Problems/part1.py
2025-04-19 23:42:08 -04:00

10 lines
252 B
Python

# This program reads two numbers and prints their sum:
a = int(input('Enter first number: '))
b = int(input('Enter second number: '))
c = int(input('Enter third number: '))
print(a + b + c)
# Can you change it so it can read and sum three numbers?