0
write a python program to input a single digit(n) and print 3 digit number created as <n(n+1)(n+2)>.
please make program
3 RĂ©ponses
- 1
Show us your attempt by providing what you have coded so far and we will help you.
0
âą n = int(input("Enter a single digit number:"))
âą a = n + 1
âą b = n + 2
âą x = (n*100) + (a*10) + b
âą print("The three digit number is:", x)
- 1
LETS PLAY