Skip to content

Instantly share code, notes, and snippets.

@zsrinivas
Created December 28, 2014 11:15
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 zsrinivas/262826fc9ffdcf078602 to your computer and use it in GitHub Desktop.
Save zsrinivas/262826fc9ffdcf078602 to your computer and use it in GitHub Desktop.
spoj 6297. Decipher | ROOTCIPH
def main():
for _ in xrange(int(raw_input())):
a, b, c = map(int, raw_input().split())
print a*a - 2*b
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment