Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save meet100ni/45f75c42b460264b6ca8b37d83da6d27 to your computer and use it in GitHub Desktop.
Save meet100ni/45f75c42b460264b6ca8b37d83da6d27 to your computer and use it in GitHub Desktop.
HackerRank Arithmetic Operators Challenge Solution
if __name__ == '__main__':
a = int(input())
b = int(input())
print(a + b)
print(a - b)
print(a * b)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment