Answer: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)
Step-by-step explanation: