summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorYuval Adam <yuv.adm@gmail.com>2011-04-08 19:33:44 +0300
committerYuval Adam <yuv.adm@gmail.com>2011-04-08 19:33:44 +0300
commitbd8b40e48c3be4e741b441c958fc601820d28d66 (patch)
treea6689ad957eb657c3542293fdfff906cae81e8e0 /templates
parentbec7d77c22c7bb186dea9fab257d10a7de8b7bc6 (diff)
copied template to c
Diffstat (limited to 'templates')
-rw-r--r--templates/template.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/template.py b/templates/template.py
index c5b3fd0..0771199 100644
--- a/templates/template.py
+++ b/templates/template.py
@@ -4,7 +4,7 @@ o = open('1.out', 'w')
t = int(f.readline().strip())
for i in xrange(t):
- nk = f.readline().strip().split(' ')
+ (n, k) = list(map(int, f.readline().strip().split(' ')))
n = int(nk[0])
k = int(nk[1])