A Triforce number is a number that is divisible by at least one out of three other numbers. Write the Python statements using the For Loop to print the triforce numbers between two numbers A and B, inclusive. The numbers must be divisible by at least one of the three other numbers provided by the user.

#The program will receive five numbers as input, the first number (A), the last number (B), and the three numbers (let’s say num1, num2 and num3) to determine whether it is divisible or not. Do not print any number outside the range [A, B].



Answer :

Other Questions