Skip to content

Commit 296062a

Browse files
committed
Adding generator to hacks
1 parent ed937d0 commit 296062a

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

generator.py

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import sys
2+
import math
3+
from fractions import Fraction
4+
5+
si = sys.stdin
6+
so = sys.stdout
7+
se = sys.stderr
8+
9+
readLine = raw_input
10+
readArgs = lambda : readLine().split()
11+
readInts = lambda : map(int, readArgs())
12+
readInt = lambda : readInts()[0]
13+
14+
print '|+' + ('|' * 99) + '=' + ('|'*100)
15+
16+
#print '|+' + ('|' * 99) + '=' + ('|'*10)
17+
18+
19+
'''n = readInt()
20+
nums = readInts()
21+
for i in nums:
22+
print i
23+
'''

0 commit comments

Comments
 (0)