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" )