Skip to content

Commit a3484ae

Browse files
author
matthias
committed
adjusted debug print in pyton template
1 parent 31813bb commit a3484ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
from __future__ import print_function
22
import sys,math,string,itertools,fractions,heapq,collections,re,array,bisect
33

4-
def debug(s):
5-
print(s, file=sys.stderr)
4+
def debug(*args):
5+
print(args, file=sys.stderr)
66

77
if __name__ == '__main__':
88
a, b, s = [int(r) for r in raw_input().split()]

0 commit comments

Comments
 (0)