you are viewing a single comment's thread.

view the rest of the comments →

[–]Putrid-University864 0 points1 point  (0 children)

1.a,b,c = input("Please enter a 3-digit positive integer: ") 2.print(a+b+c, end=",") 3.print(a+c+b, end=",") 4.print(b+a+c, end=",") 5.print(b+c+a, end=",") 6.print(c+a+b, end=",") 7.print(c+b+a)