s_id
stringlengths
10
10
p_id
stringlengths
6
6
u_id
stringlengths
10
10
date
stringlengths
10
10
language
stringclasses
1 value
original_language
stringclasses
11 values
filename_ext
stringclasses
1 value
status
stringclasses
1 value
cpu_time
stringlengths
1
5
memory
stringlengths
1
7
code_size
stringlengths
1
6
code
stringlengths
1
539k
s856101317
p02402
u267728784
1516105596
Python
Python
py
Runtime Error
0
0
253
n = int(input()) line = list(map(int, input().split())) max = line[0] min = line[0] sum = line[0] for i in range(1, n): if max < line[i]: max = line[i] elif min > line[i]: min = line[i] sum += line[i] print(min, max, sum)
s250712596
p02402
u387731924
1516717773
Python
Python3
py
Runtime Error
0
0
80
n = int(input()) nums = input().split() print(min(nums), max(nums), sum(sums))
s086626451
p02402
u387731924
1516718670
Python
Python3
py
Runtime Error
0
0
290
n = int(input()) nums = input().split() su = 0 ma = -1000000 mi = 1000000 for v in range(n): num = int(nums[v]) print(num) if num > ma: ma = num print('max is',ma) if num < mi: mi = num print('min is',mi) su += num print(mi, ma, su) }
s629550579
p02402
u640809202
1517731944
Python
Python3
py
Runtime Error
0
0
49
l=input().split() print(min(l), max(l), sum(l))
s122353594
p02402
u640809202
1517732123
Python
Python3
py
Runtime Error
0
0
63
l=list(map(int, input().split()) print(min(l), max(l), sum(l))
s464045516
p02402
u640809202
1517746838
Python
Python3
py
Runtime Error
0
0
71
input() l=list(map(int, input().split()) print(min(l), max(l), sum(l))
s275743567
p02402
u442426662
1518111841
Python
Python3
py
Runtime Error
0
0
101
s=0 a=[] for _ in range(int(input())): a.append(int(input())) s+=a[_] print(min(a),max(a),s)
s129330884
p02402
u442426662
1518111866
Python
Python3
py
Runtime Error
0
0
101
s=0 a=[] for _ in range(int(input())): a.append(int(input())) s+=a[_] print(min(a),max(a),s)
s623860184
p02402
u442426662
1518112117
Python
Python3
py
Runtime Error
0
0
94
input() s = 0 a = list(map(int,input().split())) for u in a: s=s+a print(min(a),max(a),s)
s729981906
p02402
u442426662
1518112460
Python
Python3
py
Runtime Error
0
0
93
input() s = 0 a = input() a = a.split(" ") for u in a: s=s+int(a) print(min(a),max(a),s)
s615040076
p02402
u442426662
1518112481
Python
Python3
py
Runtime Error
0
0
95
s=input() s = 0 a = input() a = a.split(" ") for u in a: s=s+int(a) print(min(a),max(a),s)
s708427927
p02402
u442426662
1518112568
Python
Python3
py
Runtime Error
0
0
94
input() s = 0 a = input() a = a.split(" ") for u in a: s=s+int(a) print(min(a),max(a),s)
s579609055
p02402
u442426662
1518112659
Python
Python3
py
Runtime Error
0
0
95
input() s = 0 a = input() a = a.split(" ") for u in a: s=s+int(a) print(min(a),max(a),s)
s139469016
p02402
u442426662
1518112951
Python
Python3
py
Runtime Error
0
0
98
input() s = 0 a = input() a = map(int,a.split(" ")) for u in a: s=s+u print(min(a),max(a),s)
s796019112
p02402
u442426662
1518112973
Python
Python3
py
Runtime Error
0
0
104
input() s = 0 a = input() a = a.split(" ") a = map(int,a) for u in a: s=s+u print(min(a),max(a),s)
s488322283
p02402
u442426662
1518112990
Python
Python3
py
Runtime Error
0
0
104
input() s = 0 a = input() a = a.split(" ") b = map(int,a) for u in b: s=s+u print(min(b),max(b),s)
s664718132
p02402
u442426662
1518113049
Python
Python3
py
Runtime Error
0
0
104
input() s = 0 a = input() b = a.split(" ") c = map(int,b) for u in c: s=s+u print(min(c),max(c),s)
s914829020
p02402
u442426662
1518113113
Python
Python3
py
Runtime Error
0
0
142
n = input() s = 0 a = input() b = a.split(" ") c = [] for i in range(n): c.append(int(b[i]) for u in c: s=s+u print(min(c),max(c),s)
s915643646
p02402
u442426662
1518113122
Python
Python3
py
Runtime Error
0
0
143
n = input() s = 0 a = input() b = a.split(" ") c = [] for i in range(n): c.append(int(b[i])) for u in c: s=s+u print(min(c),max(c),s)
s209299371
p02402
u442426662
1518113224
Python
Python3
py
Runtime Error
0
0
144
n = input() s = 0 a = input() b = a.split(" ") c = [] for i in range(n): c.append(int(b[i])) for u in c: s=s+u print(min(c),max(c),s)
s741075356
p02402
u553148578
1519731461
Python
Python
py
Runtime Error
0
0
78
input() A=list([int(i) for i in input().split()]) print(min(A),max(A),sum(A))
s902647188
p02402
u178477792
1521598223
Python
Python3
py
Runtime Error
0
0
302
n = int(input()) nums = list(map(int, input().split(" "))) maxnum = -1000000 minnum = 1000000 total = 0 for item in nums: if maxnum < item: maxnum = item elif minnum > item: minnum = item else: for item in nums: total += item print(str(minnum) + " " + str(maxnum) + " " + str(total))
s954048232
p02402
u229478139
1522193429
Python
Python3
py
Runtime Error
0
0
98
FirstLine = input() myList = list([int(i) for i in input().split()]) print(min(A),max(A),sum(A))
s995343326
p02402
u621084859
1522634978
Python
Python3
py
Runtime Error
0
0
101
n=int(input()) for i in range(n): n[1]=n[i] s=sum(n) m=min(n) ma=max(n) print(m,ma,s)
s139930113
p02402
u621084859
1522635005
Python
Python3
py
Runtime Error
0
0
101
n=int(input()) for i in range(n): n[1]=n[i] s=sum(n) m=min(n) ma=max(n) print(m ma s)
s946206798
p02402
u621084859
1522635062
Python
Python3
py
Runtime Error
0
0
119
n=int(input()) n=input().split() for i in range(n): n[1]=n[i] s=sum(n) m=min(n) ma=max(n) print(m ma s)
s513480265
p02402
u621084859
1522635175
Python
Python3
py
Runtime Error
0
0
129
n=int(input()) n=input().split() for i in range(len(n)): n[1]=int(n[i]) s=sum(n) m=min(n) ma=max(n) print(m ma s)
s508615342
p02402
u621084859
1522635327
Python
Python3
py
Runtime Error
0
0
117
n=int(input()) n=input().split() for i in range(len(n)): n[1]=int(n[i]) s=sum(n) m=min(n) ma=max(n) print(m ma s)
s763773559
p02402
u621084859
1522635351
Python
Python3
py
Runtime Error
0
0
119
n=int(input()) n=input().split() for i in range(len(n)): n[i]=int(n[i]) s=sum(n) m=min(n) ma=max(n) print(m ma s)
s217617546
p02402
u621084859
1522635690
Python
Python3
py
Runtime Error
0
0
114
n=int(input()) r=input().split() for i in range(r): r[i]=int(r[i]) s=sum(r) m=min(r) ma=max(r) print(m ma s)
s893798391
p02402
u621084859
1522635720
Python
Python3
py
Runtime Error
0
0
113
n=int(input()) r=input().split() for i in range(r): r[i]=int(r[i]) s=sum(r) m=min(r) ma=max(r) print(m ma s)
s813927305
p02402
u621084859
1522635741
Python
Python3
py
Runtime Error
0
0
108
n=int(input()) r=input().split() for i in range(r): r[i]=r[i] s=sum(r) m=min(r) ma=max(r) print(m ma s)
s516196950
p02402
u621084859
1522635777
Python
Python3
py
Runtime Error
0
0
118
n=int(input()) r=input().split() for i in range(len(r)): r[i]=int(r[i]) s=sum(r) m=min(r) ma=max(r) print(m ma s)
s519956177
p02402
u742505495
1524026104
Python
Python3
py
Runtime Error
0
0
149
n = int(input()) a = list(map(int,input().split())) a.sorted() ans = 0 for i in range(len(a)): ans += a[i] print("%d %d %d" % a[0],a[len(a)-1],ans)
s137623669
p02402
u742505495
1524026125
Python
Python3
py
Runtime Error
0
0
147
n = int(input()) a = list(map(int,input().split())) a.sort() ans = 0 for i in range(len(a)): ans += a[i] print("%d %d %d" % a[0],a[len(a)-1],ans)
s185045454
p02402
u059121893
1524327635
Python
Python3
py
Runtime Error
0
0
167
LEN = int(input()) mem = [] for i in range(0,LEN): mem.append(int(input())) LEN-=1 if LEN == 0: break print('%d %d %d',min(mem),max(mem),sum(mem))
s653734131
p02402
u059121893
1524327809
Python
Python3
py
Runtime Error
0
0
157
LEN = int(input()) mem = [] for i in range(0,LEN): mem.append(int(input())) LEN-=1 if LEN == 0: break print(min(mem),max(mem),sum(mem))
s381918597
p02402
u648117624
1524399887
Python
Python3
py
Runtime Error
0
0
107
input() a = map(int, input().split()) sum = 0 for x in a: sum += x print(min(a), max(a), sum)
s972731381
p02402
u485986915
1524476840
Python
Python3
py
Runtime Error
0
0
112
import numpy as np x = map(int,input().split()) x.sort() sum = np.sum(x) print('%s %s %s'%(max(x),min(x),sum))
s361757529
p02402
u485986915
1524476919
Python
Python3
py
Runtime Error
0
0
118
import numpy as np x = list(map(int,input().split())) x.sort() sum = np.sum(x) print('%s %s %s'%(max(x),min(x),sum))
s727796891
p02402
u074747865
1524556512
Python
Python3
py
Runtime Error
0
0
94
input() li=list(map(int,input().split())) for i in li: sum+=li[i] print(min(li),max(li),sum)
s744938153
p02402
u074747865
1524556533
Python
Python3
py
Runtime Error
0
0
91
input() li=list(map(int,input().split())) for i in li: sum+=li print(min(li),max(li),sum)
s635248995
p02402
u074747865
1524556578
Python
Python3
py
Runtime Error
0
0
90
input() li=list(map(int,input().split())) for i in li: sum+=i print(min(li),max(li),sum)
s335655891
p02402
u648117624
1524566416
Python
Python3
py
Runtime Error
0
0
107
input() a = list(map(int, input().split()) sum = 0 for x in a: sum += x print(min(a), max(a), sum)
s673796104
p02402
u729486845
1524669173
Python
Python3
py
Runtime Error
0
0
154
n1 = input() n2 = map(int, input().split()) i = 0 while n2.length > i: s += n2[i] i += 1 n2.sort() print("{} {} {}".format(n2[0], n2[-1], s))
s532893148
p02402
u729486845
1524669269
Python
Python3
py
Runtime Error
0
0
116
n1 = input() n2 = map(int, input().split()) asum = sum(n2) amin = min(n2) amax = max(n2) print(amin, amax, asum)
s308521300
p02402
u648117624
1524987643
Python
Python3
py
Runtime Error
0
0
107
input() a = list(map(int, input().split())) s = 0 for i in len(a): s += i print(min(a), max(a), s)
s130438338
p02402
u648117624
1524987674
Python
Python3
py
Runtime Error
0
0
110
input() a = list(map(int, input().split())) s = 0 for i in len(a): s = s + i print(min(a), max(a), s)
s722199576
p02402
u781194524
1525245787
Python
Python3
py
Runtime Error
0
0
200
n = input() max = 0 min = 0 sum = 0 for i in range(1,n+1): a[i]=[int(x) for x in input().split()] if a[i] >= max: max = a[i] if a[i] <= min: min = a[i] sum += a[i] print(min,max,sum)
s180215317
p02402
u781194524
1525245821
Python
Python3
py
Runtime Error
0
0
200
n = input() max = 0 min = 0 sum = 0 for i in range(1,n+1): a[i]=[int(x) for x in input().split()] if a[i] >= max: max = a[i] if a[i] <= min: min = a[i] sum += a[i] print(min,max,sum)
s298176234
p02402
u781194524
1525245977
Python
Python3
py
Runtime Error
0
0
197
n = input() max = 0 min = 0 sum = 0 for i in range(1,n+1): a=[int(x) for x in input().split()] if a[i] >= max: max = a[i] if a[i] <= min: min = a[i] sum += a[i] print(min,max,sum)
s591079690
p02402
u781194524
1525246045
Python
Python3
py
Runtime Error
0
0
194
n = input() max = 0 min = 0 sum = 0 a=[int(x) for x in input().split()] for i in range(1,n+1): if a[i] >= max: max = a[i] if a[i] <= min: min = a[i] sum += a[i] print(min,max,sum)
s726002808
p02402
u781194524
1525246443
Python
Python3
py
Runtime Error
0
0
189
n = input() max = 0 min = 0 sum = 0 a=[int(x) for x in input().split()] for i in range(n): if a[i] >= max: max = a[i] if a[i] <= min: min = a[i] sum += a[i] print(min,max,sum)
s628357129
p02402
u781194524
1525246963
Python
Python3
py
Runtime Error
0
0
212
n = int(input()) max = -100000000 min = 1000000000 sum = 0 a= input().split() for i in range(0,n): sum += a[i] if a[i] >= max: max = a[i] if a[i] <= min: min = a[i] print(str(min),str(max),str(sum))
s200041223
p02402
u781194524
1525247011
Python
Python3
py
Runtime Error
0
0
207
n = int(input()) max = -100000000 min = 1000000000 sum = 0 a= input().split() for i in range(0,n): sum += a[i] if int(a[i]) >= max: max = a[i] if int(a[i]) <= min: min = a[i] print(min,max,sum)
s716877551
p02402
u781194524
1525247030
Python
Python3
py
Runtime Error
0
0
298
n = int(input()) a = input().split() max = -1000000 min = 1000000 sum = 0 for i in range(0,n):     sum = sum + int(a[i])     if int(a[i]) > max:         max = int(a[i])     if int(a[i]) < min:         min = int(a[i])   print(str(min) + " " + str(max) + " " + str(sum))
s724352036
p02402
u781194524
1525247138
Python
Python3
py
Runtime Error
0
0
197
n = int(input()) max = -10000000 min = 100000000 sum = 0 a = input().split() for i in range(0,n): sum += a[i] if int(a[i]) >= max: max = a[i] if int(a[i]) <= min: min = a[i] print(min,max,sum)
s532900115
p02402
u592529978
1525329226
Python
Python
py
Runtime Error
0
0
83
n = int raw_input() a = map(int, raw_input().split()) print min(a), max(a), sum(a)
s563803464
p02402
u592529978
1525329420
Python
Python
py
Runtime Error
0
0
83
n = int raw_input() a = map(int, raw_input().split()) print min(a), max(a), sum(a)
s082843841
p02402
u592529978
1525329582
Python
Python
py
Runtime Error
0
0
83
n = int raw_input() a = map(int, raw_input().split()) print min(a), max(a), sum(a)
s086025766
p02402
u007066325
1527457751
Python
Python3
py
Runtime Error
0
0
140
n = int(input()) ns= int(input.spit()) for i in range(n): asum = sum(ns) amin = min(ns) amax = max(ns) print(amin, amax, asum)
s839570659
p02402
u007066325
1527457774
Python
Python3
py
Runtime Error
0
0
140
n = int(input()) ns= int(input.spit()) for i in range(n): asum = sum(ns) amin = min(ns) amax = max(ns) print(amin, amax, asum)
s391961500
p02402
u007066325
1527457900
Python
Python3
py
Runtime Error
0
0
150
n = int(input()) ns= int(input.spit()) for i in range(n): ns[i]= int(ns[i]) asum = sum(ns) amin = min(ns) amax = max(ns) print(amin, amax, asum)
s265967714
p02402
u007066325
1527457951
Python
Python3
py
Runtime Error
0
0
153
n = int(input()) ns= int(input().spit()) for i in range(n): ns[i]= int(ns[i]) asum = sum(ns) amin = min(ns) amax = max(ns) print(amin, amax, asum))
s640641439
p02402
u007066325
1527458006
Python
Python3
py
Runtime Error
0
0
111
n = int(input()) ns= int(input().spit()) asum = sum(ns) amin = min(ns) amax = max(ns) print(amin, amax, asum)
s017774694
p02402
u237094818
1527607383
Python
Python
py
Runtime Error
0
0
175
# -*- coding: utf-8 a = map(int,raw_input().split()) k = a[0] b = sorted(a[1]) min = b[0] Max = b[k-1] sum = 0 for i in b: sum += i print('%i %i %i' % (min,Max,sum)
s103803626
p02402
u237094818
1527607630
Python
Python
py
Runtime Error
0
0
174
# -*- coding: utf-8 k = input() a = map(int,raw_input().split()) b = sorted(a) min = b[0] Max = b[k-1] sum = 0 for i in b: sum += i print('%i %i %i' % (min,Max,sum)
s839688953
p02402
u500257793
1528000911
Python
Python3
py
Runtime Error
0
0
143
n=int(input()) max=-1000001;min=1000001;g=0;i=0; while i<n: j=int(input()) if max<j: max=j if min>j: min=j g+=j i=i+1 print(mi,max,j)
s181665704
p02402
u500257793
1528000966
Python
Python3
py
Runtime Error
0
0
144
n=int(input()) max=-1000001;min=1000001;g=0;i=0; while i<n: j=int(input()) if max<j: max=j if min>j: min=j g+=j i=i+1 print(min,max,g)
s945511583
p02402
u500257793
1528001159
Python
Python3
py
Runtime Error
0
0
150
n=int(input()) max=-1000001;min=1000001;g=0; num+=map(int,input().split()) for x in num: if max<x: max=x if min>x: min=x g+=x print(min,max,g)
s235366823
p02402
u500257793
1528001207
Python
Python3
py
Runtime Error
0
0
151
n=int(input()) max=-1000001;min=1000001;g=0; num=[map(int,input().split())] for x in num: if max<x: max=x if min>x: min=x g+=x print(min,max,g)
s871950617
p02402
u500257793
1528001290
Python
Python3
py
Runtime Error
0
0
175
n=int(input()) max=-1000001;min=1000001;g=0;i=0; num=[] while i<n: num.append(int(input())) i=i+1 for x in num: if max<x: max=x if min>x: min=x g+=x print(min,max,g)
s561582583
p02402
u500257793
1528001344
Python
Python3
py
Runtime Error
0
0
183
n=int(input()) max=-1000001;min=1000001;g=0;i=0; num=[] while i<n: num.append(int(input().split())) i=i+1 for x in num: if max<x: max=x if min>x: min=x g+=x print(min,max,g)
s094797043
p02402
u500257793
1528001435
Python
Python3
py
Runtime Error
0
0
184
n=int(input()) max=-1000001;min=1000001;g=0;i=0; num=list() while i<n: num+=map(int,input().split()) i=i+1 for x in num: if max<x: max=x if min>x: min=x g+=x print(min,max,g)
s354502181
p02402
u500257793
1528001517
Python
Python3
py
Runtime Error
0
0
162
n=int(input()) max=-1000001;min=1000001;g=0;i=0; num=list() while i<n: j=int(input().split()) if max<j: max=j if min>j: min=j g+=j i+=1 print(min,max,g)
s477541650
p02402
u327546577
1528137520
Python
Python3
py
Runtime Error
0
0
75
n = int(input) a = map(int, input().split()) print(min(a), max(a), sum(a))
s610106422
p02402
u327546577
1528137538
Python
Python3
py
Runtime Error
0
0
77
n = int(input()) a = map(int, input().split()) print(min(a), max(a), sum(a))
s400827825
p02402
u847467233
1528342292
Python
Python
py
Runtime Error
0
0
307
# AOJ ITP1_4_D: Min, Max and Sum # 2018.6.7 bal4u # n = input() data = list(map(int, input().split())) # 1行にある複数の値を整数にして、リストにしまう # vmin = min(data) # 最小値 vmax = max(data) # 最大値 vsum = sum(data) # 合計 # print(vmin, vmax, vsum) # 結果表示
s244456495
p02402
u400765446
1529513555
Python
Python3
py
Runtime Error
0
0
199
def main(): while True: numlst = [] numlst = list(map(int, input().split())) print(min(numlst), max(numlst), sum(numlst)) if __name__ == '__main__': main()
s491230300
p02402
u400765446
1529513946
Python
Python3
py
Runtime Error
0
0
165
def main(): n = int(input()) lst = list(map(int, input().split())) print(min(numlst), max(numlst), sum(numlst)) if __name__ == '__main__': main()
s914903900
p02402
u726978687
1529859107
Python
Python3
py
Runtime Error
0
0
619
import math def solve(input_text): for line in input_text: op=line[1] a=int(line[0]) b=int(line[2]) ans=0 if op=='+': ans=a+b if op=='-': ans=a-b if op=='*': ans=a*b if op == '/': ans =math.floor...
s086104740
p02403
u525366883
1535166136
Python
Python
py
Runtime Error
0
0
73
H, W = map(int, raw_input().split() for i in range(H): print "W" * W
s507655362
p02403
u525366883
1535166219
Python
Python
py
Runtime Error
0
0
141
while True: H, W = map(int, raw_input().split() if H == W == 0: break for i in range(H): print "W" * W print
s977407622
p02403
u525366883
1535166271
Python
Python
py
Runtime Error
0
0
141
while True: H, W = map(int, raw_input().split() if H == W == 0: break for i in range(H): print "#" * W print
s494214948
p02403
u277375424
1540301729
Python
Python3
py
Runtime Error
0
0
144
while True: H,W = map(int,input().split()) if H == W == 0: break for i in range(H): print(#*W) print()
s804468568
p02403
u281808376
1540343495
Python
Python3
py
Runtime Error
0
0
168
while True: s=input().split() t=[int(s) for i in s] if t[0]==0: break else: for i in range(t[0]): print("#"*t[1]) |
s737220638
p02403
u281808376
1540344096
Python
Python3
py
Runtime Error
0
0
186
while True: s=input().split() t=[int(s) for i in s] if t[0]==0: break else: for i in range(t[0]): print("#"*t[1]) print(" ")
s067966761
p02403
u596993252
1541063396
Python
Python3
py
Runtime Error
0
0
160
while(True): a,b=map(int,input().split()) for i in range(0,a): for j in range(0,b): print("#") print("\n") print("\n")
s152021093
p02403
u596993252
1541063455
Python
Python3
py
Runtime Error
0
0
182
while(True): a,b=map(int,input().split()) if(a==0 and b==0) for i in range(0,a): for j in range(0,b): print("#") print("\n") print("\n")
s912771226
p02403
u861678859
1541063560
Python
Python3
py
Runtime Error
0
0
126
i = 0 j = 0 H,W = map(int, input().split()) for i in range(0,H) for j in range(0,W) if j =! W: print("#")
s897408799
p02403
u962909487
1545839964
Python
Python3
py
Runtime Error
0
0
139
while True: H,W = map(int,input(),split()) if (H,W) = (0,0): break for i in range(H): print('#'*W) print()
s780510979
p02403
u962909487
1545840013
Python
Python3
py
Runtime Error
0
0
140
while True: H,W = map(int,input(),split()) if (H,W) == (0,0): break for i in range(H): print("#"*W) print()
s015800907
p02403
u962909487
1545840028
Python
Python3
py
Runtime Error
0
0
140
while True: H,W = map(int,input(),split()) if H ==0 and W==0: break for i in range(H): print("#"*W) print()
s728260820
p02403
u962909487
1545840054
Python
Python3
py
Runtime Error
0
0
135
while True: H,W = map(int,input().split()) if (H,W) = 0: break for i in range(H): print("#"*W) print()
s697699251
p02403
u962909487
1545840058
Python
Python3
py
Runtime Error
0
0
136
while True: H,W = map(int,input().split()) if (H,W) = =0: break for i in range(H): print("#"*W) print()
s952132887
p02403
u643542669
1545876189
Python
Python3
py
Runtime Error
0
0
192
h, w = map(int, input().split()) print(h, w) while h != 0: for _ in range(h): for _ in range(w): sys.stdout.write("#") print() h, w = map(int, input().split())
s526499985
p02403
u498462680
1546262515
Python
Python3
py
Runtime Error
0
0
322
while True: H,W = [int(i) for i in input().split()] if H == 0 and W == 0: break else: for j in list(range(1, H+1, 1)): for i in list(range(1, W+1, 1)): if i == W: print("#") else; print("#", end = "") ...
s476237304
p02403
u175224634
1551541893
Python
Python3
py
Runtime Error
0
0
215
while True: if a == 0 and b ==0: break else: a, b = map(int, input().split()) for j in range(a): for i in range(b): print("#", end="") print()
s755079710
p02403
u175224634
1551542041
Python
Python3
py
Runtime Error
0
0
197
i,j = 0 while True: a, b = map(int, input().split()) if a == 0 and b ==0: break for j in range(a+1): for i in range(b+1): print("#", end="") print()
s488230912
p02403
u733357255
1551613343
Python
Python3
py
Runtime Error
0
0
85
H,W = int(input().split()) for y in range(0,H): for x in range(0,W): print('#')