Skip to content

Instantly share code, notes, and snippets.

@showyou
Created July 7, 2018 14:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save showyou/ccd9628475526d0905cca4407ef9b339 to your computer and use it in GitHub Desktop.
Save showyou/ccd9628475526d0905cca4407ef9b339 to your computer and use it in GitHub Desktop.
a, b = map(int, input().split())
if a * b == 15:
print("*")
elif a + b == 15:
print("+")
else:
print("x")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment