Computer Science
Write a program to take two numbers and print if the first number is fully divisible by second number or not.
Python
Python Data Handling
70 Likes
Answer
x = int(input("Enter first number: "))
y = int(input("Enter second number: "))
print(x % y and "Not Fully Divisible" or "Fully Divisible")
Output
Enter first number: 4
Enter second number: 2
Fully Divisible
Answered By
30 Likes
Related Questions
Write a program to take a 2-digit number and then print the reversed number. That is, if the input given is 25, the program should print 52.
Try writing program (similar to previous one) for three digit number i.e., if you input 123, the program should print 321.
Write a program that reads a number of seconds and prints it in form : mins and seconds, e.g., 200 seconds are printed as 3 mins and 20 seconds.
[Hint. use // and % to get minutes and seconds]Write a program to take year as input and check if it is a leap year or not.