This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
x,y =map(int,input("Enter Two numbers:").split()) | |
#map() is used to make the variable an int | |
if(x%y)==0: | |
print('First number is divisible by second') | |
else: | |
print('First number is not divisible by second') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment