Computer Science, asked by ayushsingh7382, 7 months ago

wap to enter a number and print it's next number

Answers

Answered by imtiyazallam
2

Answer:

a  =  int(input("Enter a number: "))

print("The next number is", (a + 1))

Similar questions