Created
April 27, 2020 04:21
-
-
Save computer-tutor/9c843322fce9ec3cdd045fec4549f434 to your computer and use it in GitHub Desktop.
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