Answer:
Explanation:
n = int(input("Enter Number : "))
print(n+1,n+2,n+3)
Answer:
In python, the code would be written as...
Explanation:
n = int(input("Enter Number : "))
print(n+1,n+2,n+3)
You are printing both the number and the next three consecutive numbers after that. which essentially your answer "n" plus the numbers that create the next number "n+1" = your answer plus 1, "n+2" = your answer plus 2, etc.