Programming Examples
Python Program to accept three distinct digits and print all possible combinations from the digits
Output/ Explanation:
Enter first number:4
Enter second number:3
Enter third number:5
4 3 5
4 5 3
3 4 5
3 5 4
5 4 3
5 3 4
Output/ Explanation:
Enter first number:4
Enter second number:3
Enter third number:5
4 3 5
4 5 3
3 4 5
3 5 4
5 4 3
5 3 4