Skip to content

Instantly share code, notes, and snippets.

@antun
Last active December 20, 2018 18:58
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 antun/10954236 to your computer and use it in GitHub Desktop.
Save antun/10954236 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
import sys
rawinput = sys.stdin.read()
output = rawinput[ rawinput.index("(") + 1 : rawinput.rindex(")") ]
print(output)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment