Skip to content

Instantly share code, notes, and snippets.

@meet100ni
Created May 13, 2020 06:17
Show Gist options
  • Save meet100ni/5dd3525792b66e91ea9c1f43c79f68e4 to your computer and use it in GitHub Desktop.
Save meet100ni/5dd3525792b66e91ea9c1f43c79f68e4 to your computer and use it in GitHub Desktop.
Python: Division HackerRank Solution
if __name__ == '__main__':
a = int(input())
b = int(input())
print(a // b)
print(a / b)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment