Ask the user to input an integer. Print out the next three consecutive numbers.
Answers
Answered by
2
Answer:
Input:5
Output:6,7,8
Explanation:
n=int(input())
print(n+1,n+2,n+3)
Similar questions