CBSE Class 11 Computer Science Question 154 of 173

Data Handling — Question 6

Back to all questions
6
Question

Question 6

Write a program to take two numbers and print if the first number is fully divisible by second number or not.

Solution
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
Answer