Guest User

Untitled

a guest
Dec 13th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #!/usr/bin/python
  2. #-*- coding: utf-8-
  3.  
  4. def f(n):
  5. a = 0
  6. b = 1
  7. for i in range(1, n):
  8. a, b = b, a+b
  9. return b
  10.  
  11. print 'SECCON{' + str(f(11011))[:32] + '}'
Add Comment
Please, Sign In to add comment