From bd8b40e48c3be4e741b441c958fc601820d28d66 Mon Sep 17 00:00:00 2001 From: Yuval Adam Date: Fri, 8 Apr 2011 19:33:44 +0300 Subject: copied template to c --- 2009/qual/b/b.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to '2009/qual/b') diff --git a/2009/qual/b/b.py b/2009/qual/b/b.py index de771a0..007bc3c 100644 --- a/2009/qual/b/b.py +++ b/2009/qual/b/b.py @@ -6,9 +6,7 @@ B = [chr(ord('a')+i) for i in xrange(26)] t = int(f.readline().strip()) for case in xrange(t): - hw = f.readline().strip().split(' ') - h = int(hw[0]) - w = int(hw[1]) + (h, w) = list(map(int, f.readline().strip().split(' '))) m = [map(int, f.readline().strip().split(' ')) for j in xrange(h)] -- cgit v1.3.1