Wrtite a python programm that reads two integers and cheks whether they are multiple or not

 #4 Wrtite a python programm  that reads   two integers and

#cheks whether they are multiple or not
a=int(input("Enter the first number:"))
b=int(input("Enter the second number:"))
if b%a==0:
    print("multiplied",)
else:
    print("Not multiplied")

Comments

Popular posts from this blog

Write a python script to display the current date and time. First create variables to store date and time, then display date and time in proper format (like: 13-8-2022 and 9:00 PM """