Skip to content

Instantly share code, notes, and snippets.

@touyou
Created November 22, 2010 13:45
Show Gist options
  • Save touyou/709993 to your computer and use it in GitHub Desktop.
Save touyou/709993 to your computer and use it in GitHub Desktop.
python
#! /usr/bin/env python
# -*-coding:utf-8-*-
def main():
i = input()
while True:
i = i*i
if i >= 10^100:
return False
if __name__ = "__main__": main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment