

InterviewSolution
Saved Bookmarks
1. |
Write a program in python to accept two numbers and print their highest common factor. |
Answer» a=input("Enter first number")b=input("Enter second number")if (a>b):print(a)elif (b>a):print(b) | |