Skip to content

Commit

Permalink
Adding generator to hacks
Browse files Browse the repository at this point in the history
  • Loading branch information
jhonber committed May 21, 2014
1 parent ed937d0 commit 296062a
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions generator.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import sys
import math
from fractions import Fraction

si = sys.stdin
so = sys.stdout
se = sys.stderr

readLine = raw_input
readArgs = lambda : readLine().split()
readInts = lambda : map(int, readArgs())
readInt = lambda : readInts()[0]

print '|+' + ('|' * 99) + '=' + ('|'*100)

#print '|+' + ('|' * 99) + '=' + ('|'*10)


'''n = readInt()
nums = readInts()
for i in nums:
print i
'''

0 comments on commit 296062a

Please sign in to comment.