Respuesta :

fnej

Answer:

1)

a = float(input("Enter an integer: "))

print(a + 1)

print (a + 2)

print (a + 3)

2)

a = float(input("Enter a decimal: "))

b = float(input("Enter another decimal: "))

c = float(input("Enter a third decimal: "))

print("sum: " + str(a + b + c))

Answer:

2.2 question 1

x = int(input("Enter an integer: "))

print(x + 1)

print(x + 2)

print(x + 3)

2.2 question 2

a = float(input("Enter number here: "))

b = float(input("Enter number here: "))

c = float(input("Enter number here: "))

print(a + b + c)

Explanation:

There you go let me know if it didnt work