Computer Science, asked by rorymarnm, 10 months ago

Ask the user to input an integer. Print out the next three consecutive numbers.

Answers

Answered by megalav1999
2

Answer:

Input:5

Output:6,7,8

Explanation:

n=int(input())

print(n+1,n+2,n+3)

Similar questions