Skip to content

Commit 649d6c0

Browse files
author
matthias
committed
added to python template
1 parent dce1e9b commit 649d6c0

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

myprog.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
import math,string,itertools,fractions,heapq,collections,re,array,bisect
1+
from __future__ import print_function
2+
import sys,math,string,itertools,fractions,heapq,collections,re,array,bisect
3+
4+
def debug(s):
5+
print(s, file=sys.stderr)
26

37
if __name__ == '__main__':
4-
n=int(raw_input())
8+
a, b, s = [int(r) for r in raw_input().split()]

0 commit comments

Comments
 (0)