write a program in python to take two numbers and check that both the numbers are positive numbers. if both are positive numbers then it will check first number is fully divisible by second number or not
Answers
Answered by
3
Answer:
num1 = int(input('Num1: '))
num2 = int(input('Num2: '))
if num1 < 0 and num2 < 0:
<tab> if num1 % num2==0:
<tab> <tab>print('Number has fulfilled all the requirement's)
tab means 4spaces
please mark me as brainlies
Similar questions