s_id
string
p_id
string
u_id
string
date
string
language
string
original_language
string
filename_ext
string
status
string
cpu_time
string
memory
string
code_size
string
code
string
error
string
stdout
string
s183849246
p02397
u038005340
1453255649
Python
Python
py
Runtime Error
0
0
140
while 1: x,y = map( int , raw_input().split() ) if x == 0 and y == 0 break change = x x = y y = change print "%d %d" %(x,y)
File "/tmp/tmpmwhuedrt/tmpo1mpwd1e.py", line 3 if x == 0 and y == 0 ^ SyntaxError: expected ':'
s069032928
p02397
u038005340
1453255715
Python
Python
py
Runtime Error
0
0
136
while 1: x,y = map( int , raw_input().split() ) if x == 0 and y == 0 break temp = x x = y y = temp print "%d %d" %(x,y)
File "/tmp/tmppj6vi_ga/tmp6ftiitgk.py", line 3 if x == 0 and y == 0 ^ SyntaxError: expected ':'
s958251978
p02397
u038005340
1453255825
Python
Python
py
Runtime Error
0
0
198
while 1: x,y = map( int , raw_input().split() ) if x == 0 and y == 0 break elif x < y print "%d %d" %(x,y) elif y < x temp = x x = y y = temp print "%d %d" %(x,y)
File "/tmp/tmp6z19zv2u/tmppdyb4scj.py", line 3 if x == 0 and y == 0 ^ SyntaxError: expected ':'
s668686053
p02397
u038005340
1453255840
Python
Python
py
Runtime Error
0
0
162
while 1: x,y = map( int , raw_input().split() ) if x == 0 and y == 0 break elif x < y print "%d %d" %(x,y) elif y < x print "%d %d" %(y,x)
File "/tmp/tmpd5t_xplg/tmp1iq99150.py", line 3 if x == 0 and y == 0 ^ SyntaxError: expected ':'
s644755201
p02397
u393769849
1453256554
Python
Python
py
Runtime Error
0
0
142
x, y = map(int, raw_input.split()) while True: if x < y: print 'x, y' if x > y : print 'y, x' if x == y == 0: break
File "/tmp/tmpowz9vl4p/tmpzx_vaaps.py", line 7 print 'x, y' ^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s074470989
p02397
u393769849
1453256628
Python
Python
py
Runtime Error
0
0
172
x, y = map(int, raw_input.split()) while True: if x < y: print 'x y' if x > y : print 'y x' elif x == y: print 'x y' if x == y == 0: break
File "/tmp/tmp4i9h7xdy/tmpr3dbthnu.py", line 7 print 'x y' ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s760672423
p02397
u393769849
1453256656
Python
Python
py
Runtime Error
0
0
174
x, y = map(int, raw_input.split()) while True: if x < y: print 'x y' elif x > y : print 'y x' elif x == y: print 'x y' if x == y == 0: break
File "/tmp/tmp79hzkca2/tmpqln4dkxy.py", line 7 print 'x y' ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s490094535
p02397
u393769849
1453256749
Python
Python
py
Runtime Error
0
0
176
while True: x, y = map(int, raw_input.split()) if x < y: print 'x y' elif x > y : print 'y x' elif x == y: print 'x y' if x == y == 0: break
File "/tmp/tmpxp4x11nd/tmph0sdtydj.py", line 7 print 'x y' ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s091707893
p02397
u393769849
1453256849
Python
Python
py
Runtime Error
0
0
206
while True: x, y = map(int, raw_input.split()) if x < y: print '%d %d' %(x, y) elif x > y : print '%d %d' %(y, x) elif x == y: print '%d %d' %(x, y) if x == y == 0: break
File "/tmp/tmprsj0y6j5/tmpszqaxk1u.py", line 7 print '%d %d' %(x, y) ^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s810710257
p02397
u393769849
1453256881
Python
Python
py
Runtime Error
0
0
208
while True: x, y = map(int, raw_input.split()) if x == y == 0: break if x < y: print '%d %d' %(x, y) elif x > y : print '%d %d' %(y, x) elif x == y: print '%d %d' %(x, y)
File "/tmp/tmpuueid0_x/tmp2qsq2w8t.py", line 11 print '%d %d' %(x, y) ^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s624852408
p02397
u885467869
1453257047
Python
Python
py
Runtime Error
0
0
177
while True a, b = map(int, raw_input().split()) if a == 0 and b == 0: break if a < b: print '%s %s' % (b, a) else: print '%s %s' % (a, b)
File "/tmp/tmpl_a6fwg3/tmp238yexsg.py", line 1 while True ^ SyntaxError: expected ':'
s599689557
p02397
u824204304
1453258297
Python
Python
py
Runtime Error
0
0
187
i = 0 while 1: x,y = map(int, raw_input().split()) i += 1 if x == '0' and y == '0': break if x >= y: print '%s %s' % (y,x) else: print '%s %s' % (x,y)
File "/tmp/tmpt165_ycr/tmpvy13ota9.py", line 8 print '%s %s' % (y,x) ^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s520624769
p02397
u824204304
1453258356
Python
Python
py
Runtime Error
0
0
192
i = 0 while 1: x,y = map(int, raw_input().split()) i += 1 if x == '0' and y == '0': break if x >= y: print '%s %s' % (y,x) if y >= x: print '%s %s' % (x,y)
File "/tmp/tmp1bosuub1/tmppl3_5ssr.py", line 8 print '%s %s' % (y,x) ^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s507820272
p02397
u824204304
1453258509
Python
Python
py
Runtime Error
0
0
189
i = 0 while 1: x,y = map(int, raw_input().split()) i += 1 if x == '0' and y == '0': break elif x >= y: print '%s %s' % (y,x) else: print '%s %s' % (x,y)
File "/tmp/tmpfgiwz0qp/tmp354poowa.py", line 8 print '%s %s' % (y,x) ^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s002184884
p02397
u613805578
1453258546
Python
Python
py
Runtime Error
0
0
127
sum = 0 while 1: x, y =map(int, raw_input().split()) sum = sum + 1 if x == y == '0': break print sorted(x, y)
File "/tmp/tmpwywn4muv/tmpe2kzkn68.py", line 7 print sorted(x, y) ^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s544783651
p02397
u824204304
1453258623
Python
Python
py
Runtime Error
0
0
188
i = 0 while 1: x,y = map(int, raw_input().split()) i += 1 if x == '0' and y == '0': break else: if x >= y: print 'y x' else: print 'x y'
File "/tmp/tmpy7ii3kx8/tmpgqxyl8on.py", line 9 print 'y x' ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s088626991
p02397
u824204304
1453258656
Python
Python
py
Runtime Error
0
0
172
while 1: x,y = map(int, raw_input().split()) if x == '0' and y == '0': break else: if x >= y: print 'y x' else: print 'x y'
File "/tmp/tmp1fxhfi10/tmphise5t90.py", line 7 print 'y x' ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s080466975
p02397
u824204304
1453258664
Python
Python
py
Runtime Error
0
0
175
while True: x,y = map(int, raw_input().split()) if x == '0' and y == '0': break else: if x >= y: print 'y x' else: print 'x y'
File "/tmp/tmptaeg493n/tmpezxy425n.py", line 7 print 'y x' ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s388839978
p02397
u613805578
1453258681
Python
Python
py
Runtime Error
0
0
164
sum = 0 while 1: x, y =map(int, raw_input().split()) sum = sum + 1 a = max(x, y) b = min(x, y) if x == y == '0': break print '%s %s' %(b, a)
File "/tmp/tmpx2nv5nge/tmpnuaf3xk9.py", line 9 print '%s %s' %(b, a) ^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s369170689
p02397
u613805578
1453258735
Python
Python
py
Runtime Error
0
0
165
sum = 0 while 1: x, y = map(int, raw_input().split()) sum = sum + 1 a = max(x, y) b = min(x, y) if x == y == '0': break print '%s %s' %(b, a)
File "/tmp/tmpbx9mc_aj/tmp53zi11p6.py", line 9 print '%s %s' %(b, a) ^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s950327334
p02397
u047737909
1453258806
Python
Python
py
Runtime Error
0
0
96
while True x,y =map(int,raw_input().split()) if(x==0 and y==0): Break elif(x>y) print x>y
File "/tmp/tmpowdl0fqu/tmp1mnp8tjd.py", line 1 while True ^ SyntaxError: expected ':'
s845524525
p02397
u613805578
1453258831
Python
Python
py
Runtime Error
0
0
173
sum = 0 while 1: x, y = map(int, raw_input().split()) sum = sum + 1 a = max(x, y) b = min(x, y) if x == '0' and y == '0': break print '%s %s' %(b, a)
File "/tmp/tmpyndad4gl/tmpfpk3kiu6.py", line 9 print '%s %s' %(b, a) ^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s962714799
p02397
u613805578
1453292420
Python
Python
py
Runtime Error
0
0
156
while 1: x, y = map(int, raw_input().split()) if x <= y: print (x y) if x == y == 0: break if y < x: print (y x)
File "/tmp/tmpcyg_0bx0/tmpbyr1ph1i.py", line 4 print (x y) ^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s473069589
p02397
u613805578
1453292545
Python
Python
py
Runtime Error
0
0
166
while 1: x, y = map(int, raw_input().split()) if x <= y: print '%d %d' %(x, y) if y < x: print '%d %d' %(y, x) if x == y == 0: break
File "/tmp/tmpt9ueoc5h/tmpxd6_que0.py", line 2 while 1: IndentationError: unexpected indent
s739826723
p02397
u613805578
1453292565
Python
Python
py
Runtime Error
0
0
149
while 1: x, y = map(int, raw_input().split()) if x <= y: print '%d %d' %(x, y) if y < x: print '%d %d' %(y, x) if x == y == 0: break
File "/tmp/tmprgm9gipv/tmpt00m2ms3.py", line 1 while 1: IndentationError: unexpected indent
s204929048
p02397
u613805578
1453292588
Python
Python
py
Runtime Error
0
0
147
while 1: x, y = map(int, raw_input().split()) if x <= y: print '%d %d' %(x,y) if y < x: print '%d %d' %(y,x) if x == y == 0: break
File "/tmp/tmpb8244_nc/tmpu9f1cvlc.py", line 1 while 1: IndentationError: unexpected indent
s541603888
p02397
u613805578
1453292603
Python
Python
py
Runtime Error
0
0
153
while 1: x, y = map(int, raw_input().split()) if x <= y: print '%d %d' %(x,y) if y < x: print '%d %d' %(y,x) if x == 0 and x == 0: break
File "/tmp/tmpa2cqqo3c/tmpyvh7gur7.py", line 1 while 1: IndentationError: unexpected indent
s134140753
p02397
u613805578
1453292627
Python
Python
py
Runtime Error
0
0
153
while 1: x, y = map(int, raw_input().split()) if x <= y: print "%d %d" %(x,y) if y < x: print "%d %d" %(y,x) if x == 0 and x == 0: break
File "/tmp/tmpzfhlsr68/tmpuh70nt9h.py", line 1 while 1: IndentationError: unexpected indent
s156257286
p02397
u613805578
1453292635
Python
Python
py
Runtime Error
0
0
153
while 1: x, y = map(int, raw_input().split()) if x <= y: print "%d %d" %(x,y) if y < x: print "%d %d" %(y,x) if x == 0 and y == 0: break
File "/tmp/tmp15wpfexo/tmpjo_e55g3.py", line 1 while 1: IndentationError: unexpected indent
s147656818
p02397
u613805578
1453292665
Python
Python
py
Runtime Error
0
0
155
while 1: x, y = map(int, raw_input().split()) if x <= y: print "%d %d" % (x,y) if y < x: print "%d %d" % (y,x) if x == 0 and y == 0: break
File "/tmp/tmpd3awhcr5/tmpybvjj_yd.py", line 1 while 1: IndentationError: unexpected indent
s407750167
p02397
u613805578
1453292940
Python
Python
py
Runtime Error
0
0
159
while 1: x, y = map(int, raw_input().split()) if x <= y: print "%d %d" % (x,y) elif y < x: print "%d %d" % (y,x) elif x == 0 and y == 0: break
File "/tmp/tmpqgo1cgyx/tmphtl90blo.py", line 1 while 1: IndentationError: unexpected indent
s905294355
p02397
u613805578
1453293053
Python
Python
py
Runtime Error
0
0
180
while 1: x, y = map(int, raw_input().split()) if x <= y: print "%d %d" % (x,y) elif y < x: print "%d %d" % (y,x) elif x == 0 and y == 0: break
File "/tmp/tmpr4uy5w01/tmpy2t3v2f8.py", line 1 while 1: IndentationError: unexpected indent
s240242246
p02397
u613805578
1453293198
Python
Python
py
Runtime Error
0
0
178
while 1: x, y = map(int, raw_input().split()) if x == 0 and y == 0: break elif y < x: print "%d %d" % (y,x) else: print "%d %d" % (x,y)
File "/tmp/tmpgalrl566/tmp2_cm4iv6.py", line 1 while 1: IndentationError: unexpected indent
s446478430
p02397
u613805578
1453293266
Python
Python3
py
Runtime Error
0
0
178
while 1: x, y = map(int, raw_input().split()) if x == 0 and y == 0: break elif y < x: print "%d %d" % (y,x) else: print "%d %d" % (x,y)
File "/tmp/tmplh4v_yci/tmpnuo80tih.py", line 1 while 1: IndentationError: unexpected indent
s161311519
p02397
u613805578
1453293288
Python
Python
py
Runtime Error
0
0
171
while 1: x, y = map(int, raw_input().split()) if x == 0 and y == 0: break elif y < x: print "%d %d" % (y,x) else: print "%d %d" % (x,y)
File "/tmp/tmpiixpu9xx/tmp7yrcwkh3.py", line 1 while 1: IndentationError: unexpected indent
s736450616
p02397
u613805578
1453293419
Python
Python
py
Runtime Error
0
0
169
while 1: x, y = map(int, raw_input().split()) if x == 0 and y == 0: break elif y < x: print '%d %d' %(y,x) else: print '%d %d' %(x,y)
File "/tmp/tmpt_08wmrt/tmpcwrv8j27.py", line 1 while 1: IndentationError: unexpected indent
s828525652
p02397
u613805578
1453293461
Python
Python
py
Runtime Error
0
0
149
while 1: x, y = map(int, raw_input().split()) if x == 0 and y == 0: break elif y < x: print y, x else: print x, y
File "/tmp/tmpmntjot96/tmpsctyzuq7.py", line 1 while 1: IndentationError: unexpected indent
s097370083
p02397
u613805578
1453293557
Python
Python
py
Runtime Error
0
0
171
while 1: x, y = map(int, raw_input().split()) if x == 0 and y == 0: break elif y < x: print '%s %s' %(y, x) else: print '%s %s' %(x, y)
File "/tmp/tmps63_6wrt/tmp1q9znwa1.py", line 1 while 1: IndentationError: unexpected indent
s207173018
p02397
u613805578
1453293572
Python
Python
py
Runtime Error
0
0
169
while 1: x, y = map(int, raw_input().split()) if x == 0 and y == 0: break if y < x: print '%s %s' %(y, x) else: print '%s %s' %(x, y)
File "/tmp/tmptp8i6tot/tmpvp1j0nes.py", line 1 while 1: IndentationError: unexpected indent
s353005649
p02397
u613805578
1453293586
Python
Python
py
Runtime Error
0
0
176
while 1: x, y = map(int, raw_input().split()) if x == 0 and y == 0: break if y < x: print '%s %s' %(y, x) else: print '%s %s' %(x, y)
File "/tmp/tmp0q12f_dj/tmpkqpbhu4u.py", line 1 while 1: IndentationError: unexpected indent
s215796551
p02397
u613805578
1453293592
Python
Python
py
Runtime Error
0
0
173
while 1: x, y = map(int, raw_input().split()) if x == 0 and y == 0: break if y < x: print '%s %s' %(y, x) else: print '%s %s' %(x, y)
File "/tmp/tmpxrizu876/tmpn5c7mmqz.py", line 1 while 1: IndentationError: unexpected indent
s208016065
p02397
u613805578
1453293641
Python
Python
py
Runtime Error
0
0
179
while 1: x, y = map(int, raw_input().split()) if x == 0 and y == 0: break if y < x: print '%s %s' %(y, x) else: print '%s %s' %(x, y)
File "/tmp/tmpbjv1owzo/tmpo99x_0oy.py", line 1 while 1: IndentationError: unexpected indent
s992702039
p02397
u613805578
1453293672
Python
Python
py
Runtime Error
0
0
183
while 1: x, y = map(int, raw_input().split()) if x == 0 and y == 0: break if y < x: print ' %s %s ' %(y, x) else: print ' %s %s ' %(x, y)
File "/tmp/tmpr8s9rifi/tmpqzsa7104.py", line 1 while 1: IndentationError: unexpected indent
s922208611
p02397
u613805578
1453293706
Python
Python
py
Runtime Error
0
0
177
while 1: x, y = map(int, raw_input().split()) if x == 0 and y == 0: break if y < x: print '%s %s' %(y,x) else: print '%s %s' %(x,y)
File "/tmp/tmphlj49nvd/tmp5irbesml.py", line 1 while 1: IndentationError: unexpected indent
s544061465
p02397
u613805578
1453293830
Python
Python
py
Runtime Error
0
0
179
while 1: x, y = map(int, raw_input().split()) if x == 0 and y == 0: break if y < x: print '%s %s' % (y,x) else: print '%s %s' % (x,y)
File "/tmp/tmp9ufmbhy7/tmprwygb62l.py", line 1 while 1: IndentationError: unexpected indent
s882234241
p02397
u613805578
1453294025
Python
Python
py
Runtime Error
0
0
186
while 1: x, y = map(int, raw_input().split()) if x == 0 and y == 0: break if y < x: print '%s %s' % (y,x) else: print '%s %s' % (x,y)
File "/tmp/tmpfb8oawjj/tmpf4scu6n8.py", line 1 while 1: IndentationError: unexpected indent
s163651129
p02397
u613805578
1453294052
Python
Python
py
Runtime Error
0
0
186
while 1: x, y = map(int, raw_input().split()) if x == 0 and y == 0: break if x > y: print '%s %s' % (y,x) else: print '%s %s' % (x,y)
File "/tmp/tmpajvcpuml/tmp6tlfi1b_.py", line 1 while 1: IndentationError: unexpected indent
s105238416
p02397
u613805578
1453294104
Python
Python
py
Runtime Error
0
0
186
while 1: x, y = map(int, raw_input().split()) if x == 0 and y == 0: break if x > y: print "%s %s" % (y,x) else: print "%s %s" % (x,y)
File "/tmp/tmpw7a_lvl2/tmp6_pcz6pt.py", line 1 while 1: IndentationError: unexpected indent
s842262290
p02397
u613805578
1453294166
Python
Python
py
Runtime Error
0
0
188
while 1: x, y = map(int, raw_input().split()) if x == 0 and y == 0: break elif x > y: print "%s %s" % (y,x) else: print "%s %s" % (x,y)
File "/tmp/tmp_da_zdpw/tmptie6ltqr.py", line 1 while 1: IndentationError: unexpected indent
s482548455
p02397
u613805578
1453294280
Python
Python
py
Runtime Error
0
0
207
while 1: x, y = map(int, raw_input().split()) if x == 0 and y == 0: break else: if x > y: print "%s %s" % (y,x) else: print "%s %s" % (x,y)
File "/tmp/tmpewhgy5lr/tmpuf73dxmp.py", line 1 while 1: IndentationError: unexpected indent
s322363267
p02397
u613805578
1453294387
Python
Python
py
Runtime Error
0
0
207
while 1: x, y = map(int, raw_input().split()) if x == 0 and y == 0: break else: if x > y: print '%s %s' % (y,x) else: print '%s %s' % (x,y)
File "/tmp/tmpfa4oov1t/tmpous92uqy.py", line 1 while 1: IndentationError: unexpected indent
s925234211
p02397
u613805578
1453294418
Python
Python
py
Runtime Error
0
0
205
while 1: x, y = map(int, raw_input().split()) if x == 0 and y == 0: break else: if x>y: print '%s %s' % (y,x) else: print '%s %s' % (x,y)
File "/tmp/tmpbexeurtr/tmp4wxdrc3z.py", line 1 while 1: IndentationError: unexpected indent
s376232180
p02397
u613805578
1453294468
Python
Python
py
Runtime Error
0
0
210
while True: x, y = map(int, raw_input().split()) if x == 0 and y == 0: break else: if x > y: print '%s %s' % (y,x) else: print '%s %s' % (x,y)
File "/tmp/tmpfe9k0im2/tmprjsi5sn2.py", line 1 while True: IndentationError: unexpected indent
s824513016
p02397
u613805578
1453294544
Python
Python
py
Runtime Error
0
0
209
while 1: x, y = map(int, raw_input().split()) if x == 0 and y == 0: break else: if x > y: print '%s %s' % (y,x) else: print '%s %s' % (x,y)
File "/tmp/tmpjnz3x0eg/tmp9fqr9hft.py", line 1 while 1: IndentationError: unexpected indent
s013754256
p02397
u613805578
1453294549
Python
Python
py
Runtime Error
0
0
212
while 1: x, y = map(int, raw_input().split()) if x == 0 and y == 0: break else: if x > y: print '%s %s' % (y,x) else: print '%s %s' % (x,y)
File "/tmp/tmpt4arkhzf/tmpjjn78p1d.py", line 1 while 1: IndentationError: unexpected indent
s483866769
p02397
u613805578
1453294565
Python
Python
py
Runtime Error
0
0
209
while 1: x, y = map(int, raw_input().split()) if x == 0 and y == 0: break else: if x > y: print '%s %s' % (y,x) else: print '%s %s' % (x,y)
File "/tmp/tmp8yv5e3ki/tmp_o0tiwp1.py", line 3 if x == 0 and y == 0: IndentationError: unexpected indent
s906707102
p02397
u724923896
1453302647
Python
Python
py
Runtime Error
0
0
65
x, y = input() if x < y: print (x y) if x > y: print (y x)
File "/tmp/tmpklw4hfvq/tmpfi0fzy71.py", line 4 print (x y) ^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s482796246
p02397
u724923896
1453302829
Python
Python
py
Runtime Error
0
0
114
while 1: x, y = input() if x == y: break if x < y: print (x y) if x > y: print (y x)
File "/tmp/tmpy6xzb1ru/tmpnlz5f7dv.py", line 6 print (x y) ^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s060555090
p02397
u970436839
1453302887
Python
Python
py
Runtime Error
0
0
156
while True: x, y = map(int, raw_input.split()) if x == 0 and y == 0: break elif x < y: print "%d %d" %(x, y) else: print "%d %d" %(y, x)
File "/tmp/tmpum5a001u/tmpeo_p375n.py", line 6 print "%d %d" %(x, y) ^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s862323821
p02397
u724923896
1453302932
Python
Python
py
Runtime Error
0
0
125
while 1: x, y = input() if x == 0 and y == 0: break if x < y: print (x y) if x > y: print (y x)
File "/tmp/tmp3dhrqvvo/tmp6_m1e0y2.py", line 6 print (x y) ^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s390269516
p02397
u724923896
1453303010
Python
Python
py
Runtime Error
0
0
133
while 1: x = input() y = input() if x == 0 and y == 0: break if x < y: print x y if x > y: print y x
File "/tmp/tmpcmw7z62v/tmpp_bwenci.py", line 7 print x y ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s618558572
p02397
u047737909
1453303541
Python
Python
py
Runtime Error
0
0
167
while True: x,y =map(int,raw_input.split()) if(x==y==0): break elif(x>y): print"%d > %d"%(x,y) elif(x<y): print"%d < %d"%(x,y) else: print"%d = %d"%(x,y)
File "/tmp/tmpqcq19sxb/tmp1abnf3iv.py", line 6 print"%d > %d"%(x,y) ^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s221553774
p02397
u047737909
1453303647
Python
Python
py
Runtime Error
0
0
134
while True: x,y =map(int,raw_input.split()) if(x==y==0): break elif(x>y): print"%s %s"%(x,y) elif(x<=y): print"%s %s"%(y,x)
File "/tmp/tmpad5wqkh9/tmp1rps6o3_.py", line 6 print"%s %s"%(x,y) ^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s041417652
p02397
u047737909
1453303876
Python
Python
py
Runtime Error
0
0
118
while True: x,y =map(int,raw_input.split()) if(x==y==0): break elif(x>y): print x y elif(x<=y): print y x
File "/tmp/tmphraau0qh/tmplsnkz1n5.py", line 6 print x y ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s633152755
p02397
u047737909
1453303934
Python
Python
py
Runtime Error
0
0
121
while True: x,y =map(int, raw_input().split()) if(x==y==0): break elif(x>y): print x y elif(x<=y): print y x
File "/tmp/tmptszggii9/tmp4vj7mm4u.py", line 6 print x y ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s991906777
p02397
u834416077
1453346311
Python
Python
py
Runtime Error
0
0
115
while (1): x,y = map(int, input()_split()) if x == 0 and y ==0: break print "%d %d" %(min(x,y), max(x,y))
File "/tmp/tmpksx79_ve/tmpp2ty1w5p.py", line 2 x,y = map(int, input()_split()) ^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s026430942
p02397
u824204304
1453382958
Python
Python
py
Runtime Error
0
0
164
while True: x,y = map(int, input().split()) if x == 0 and y == 0: break if x >= y: print '%s %s' % (y, x) else: print '%s %s' % (x, y)
File "/tmp/tmptc4wxohe/tmp8en83o8y.py", line 6 print '%s %s' % (y, x) ^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s223657877
p02397
u828153094
1453392809
Python
Python
py
Runtime Error
0
0
118
while 1 x, y = map(int, raw_input().split()) if x == 0 and y == 0: break print min(x, y) max(x, y)
File "/tmp/tmp13b_ddko/tmp0jg3t94h.py", line 1 while 1 ^ SyntaxError: expected ':'
s807781829
p02397
u828153094
1453393375
Python
Python
py
Runtime Error
0
0
130
while 1 x, y = map(int, raw_input().split()) if x == 0 and y == 0: break print '%d %d' %(min(x, y), max(x, y))
File "/tmp/tmppi6n1z2a/tmp9tdbrvnj.py", line 1 while 1 ^ SyntaxError: expected ':'
s850959315
p02397
u828153094
1453393488
Python
Python
py
Runtime Error
0
0
120
while 1: x, y = map(int, raw_input().split()) if x == 0 and y == 0: break print min(x, y) max(x, y))
File "/tmp/tmpj3gvb4l8/tmpnwxq4std.py", line 5 print min(x, y) max(x, y)) ^ SyntaxError: unmatched ')'
s776750380
p02397
u828153094
1453393520
Python
Python
py
Runtime Error
0
0
119
while 1: x, y = map(int, raw_input().split()) if x == 0 and y == 0: break print min(x, y) max(x, y)
File "/tmp/tmpzbmuf48j/tmpubtp4vkx.py", line 5 print min(x, y) max(x, y) ^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s109734761
p02397
u828153094
1453393557
Python
Python
py
Runtime Error
0
0
121
while 1: x, y = map(int, raw_input().split()) if x == 0 and y == 0: break print min(x, y), max(x, y))
File "/tmp/tmpbfuele94/tmpgahs6byr.py", line 5 print min(x, y), max(x, y)) ^ SyntaxError: unmatched ')'
s240331807
p02397
u119456964
1453775981
Python
Python
py
Runtime Error
0
0
137
while 1: if x == 0 and y == 0: break else: if x > y: temp = x x = y y = temp print '{0} {1}'.format(x, y)
File "/tmp/tmpy6_pwxs_/tmp_kfm51lr.py", line 9 print '{0} {1}'.format(x, y) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s644008457
p02397
u532962080
1453779557
Python
Python
py
Runtime Error
0
0
163
while True: x = input() y = input() if x == 0 and y == 0: break elif x < y: print "%d %d" % (x, y) elif x > y: print "%d %d" % (y, x)
File "/tmp/tmpnc8pg5j2/tmpo1497f2_.py", line 7 print "%d %d" % (x, y) ^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s825250028
p02397
u532962080
1453779964
Python
Python
py
Runtime Error
0
0
66
while True: x = input() y = input() print min(x,y), max(x,y)
File "/tmp/tmpl9n894vn/tmpek_w14fv.py", line 4 print min(x,y), max(x,y) ^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s981512627
p02397
u532962080
1453779988
Python
Python
py
Runtime Error
0
0
94
while True: x = input() y = input() if x == y == 0: break print min(x,y), max(x,y)
File "/tmp/tmpyh7xuriz/tmpz0hpy_4v.py", line 6 print min(x,y), max(x,y) ^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s233474391
p02397
u532962080
1453780008
Python
Python
py
Runtime Error
0
0
94
while True: x = input() y = input() if x == y == 0: break print min(x,y), max(x,y)
File "/tmp/tmpxogymtaz/tmp0n7imh99.py", line 6 print min(x,y), max(x,y) ^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s697302490
p02397
u532962080
1453780026
Python
Python
py
Runtime Error
0
0
94
while True: x = input() y = input() if x == y == 0: break print min(x,y), max(x,y)
File "/tmp/tmppily36tp/tmpgoean1x8.py", line 6 print min(x,y), max(x,y) ^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s453199593
p02397
u532962080
1453780096
Python
Python
py
Runtime Error
0
0
117
while True: x,y = map(int,raw_input().split()) y = input() if x == y == 0: break print min(x,y), max(x,y)
File "/tmp/tmpqnqismva/tmpddefc0m4.py", line 6 print min(x,y), max(x,y) ^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s907809857
p02397
u456885296
1453781087
Python
Python
py
Runtime Error
0
0
77
a,b=map(int,raw_input().split()) if a >= b: print 'a b' else print 'b a'
File "/tmp/tmp1ecu2ygz/tmp_1ly8fq3.py", line 4 print 'a b' ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s802103639
p02397
u177295149
1453789163
Python
Python
py
Runtime Error
0
0
121
while 1: x = int(raw_input()) y = int(raw_input()) if x == 0 and y == 0: break print '%s %s' %(x, y)
File "/tmp/tmpmdsre4rh/tmp_63y7b43.py", line 4 if x == 0 and y == 0: IndentationError: unexpected indent
s856964831
p02397
u177295149
1453789221
Python
Python
py
Runtime Error
0
0
100
while 1: x, y = int(raw_input()) if x == 0 and y == 0: break print '%s %s' %(x, y)
File "/tmp/tmp59tujsp0/tmpvwp9oxnl.py", line 3 if x == 0 and y == 0: IndentationError: unexpected indent
s403361989
p02397
u177295149
1453789382
Python
Python
py
Runtime Error
0
0
160
while 1: x,y = map(raw_input().split()) if x == 0 and y == 0: break if y >= x: print '%s %s' % (x, y) else: print '%s %s' % (y, x)
File "/tmp/tmp2alrurk0/tmp7ny4tfy1.py", line 6 print '%s %s' % (x, y) ^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s418326394
p02397
u920118302
1453811312
Python
Python
py
Runtime Error
0
0
244
x = [] y = [] i = 0 while True: a, b = map(int, input().split()) if b < a: stock = a a = b b = stock x.append(a) y.append(b) if x[i] == 0 and y[i] == 0: break i += 1 for j in range(i): print(str(x[j]), str(y[j]))
Traceback (most recent call last): File "/tmp/tmpv6wiqje0/tmpb_6_4g2i.py", line 6, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s925219593
p02397
u803327846
1453819404
Python
Python
py
Runtime Error
0
0
122
while 1: x,y = map(int, input().split) if x == 0 and y == 0: break min = min(x,y) max = max(x,y) print x + y
File "/tmp/tmpy4yg5nrg/tmpijuwu2ct.py", line 7 print x + y ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s192637741
p02397
u803327846
1453819504
Python
Python
py
Runtime Error
0
0
135
while 1: x,y = map(int, input().split) if x == 0 and y == 0: break min = min(x,y) max = max(x,y) print "%d %d", (min,max)
File "/tmp/tmpvlx6d7b9/tmpnztx27k5.py", line 7 print "%d %d", (min,max) ^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s696738116
p02397
u803327846
1453819530
Python
Python
py
Runtime Error
0
0
139
while 1: x, y = map(int,raw_input().split) if x == 0 and y == 0: break min = min(x,y) max = max(x,y) print "%d %d", (min,max)
File "/tmp/tmpnpljodok/tmpv_z1oixz.py", line 7 print "%d %d", (min,max) ^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s333333918
p02397
u803327846
1453819554
Python
Python
py
Runtime Error
0
0
140
while 1: x, y = map(int,raw_input().split) if x == 0 and y == 0: break min = min(x,y) max = max(x,y) print "%d %d", %(min,max)
File "/tmp/tmp6qciag4y/tmpmrq95sby.py", line 7 print "%d %d", %(min,max) ^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s478392941
p02397
u436807165
1455147382
Python
Python
py
Runtime Error
0
0
123
while True: x,y = map(int,raw_input().split()) if x,y == 0,0: break elif x >= y: print x, y elif y >x: print y, x
File "/tmp/tmphwuogqw0/tmp30sfuo0u.py", line 3 if x,y == 0,0: ^ SyntaxError: invalid syntax
s324883589
p02397
u436807165
1455147450
Python
Python
py
Runtime Error
0
0
123
while True: x,y = map(int,raw_input().split()) if x,y == 0,0: break elif x >= y: print x, y elif y >x: print y, x
File "/tmp/tmprgxqts56/tmpp3n84315.py", line 3 if x,y == 0,0: ^ SyntaxError: invalid syntax
s880699171
p02397
u436807165
1455147539
Python
Python
py
Runtime Error
0
0
121
while True: x,y = map(int,raw_input().split()) if x,y == 0,0: break elif x >= y: print x,y elif y >x: print y,x
File "/tmp/tmp1tw9gd_x/tmplc12zhjr.py", line 3 if x,y == 0,0: ^ SyntaxError: invalid syntax
s224752931
p02397
u436807165
1455147829
Python
Python
py
Runtime Error
0
0
83
while True: x,y = sorted(map(raw_input().split())) if x==y==0: break print x,y
File "/tmp/tmp9908bu7d/tmp9pvcx7yb.py", line 5 print x,y ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s661268526
p02397
u075836834
1457323541
Python
Python3
py
Runtime Error
0
0
149
import sys while True: x,y = map(int,sys.stdin.inputline().split()) if x==0 & y==0: break else: if x<=y: print(x,y) else: print(y,x)
Traceback (most recent call last): File "/tmp/tmpx22s5y5g/tmpgg9_cs2m.py", line 4, in <module> x,y = map(int,sys.stdin.inputline().split()) ^^^^^^^^^^^^^^^^^^^ AttributeError: '_io.TextIOWrapper' object has no attribute 'inputline'
s766190371
p02397
u994049982
1458663271
Python
Python
py
Runtime Error
0
0
144
While True: a=map(int,input().split()) if a==[0,0]: break if a[0]>a[1]:print(str(a[1])+" "+str(a[0])) else: print(str(a[0])+" "+str(a[1]))
File "/tmp/tmp7rmspeww/tmpzfx1fz3f.py", line 1 While True: ^^^^ SyntaxError: invalid syntax
s936833598
p02397
u994049982
1458663286
Python
Python
py
Runtime Error
0
0
148
While True: a=map(int,raw_input().split()) if a==[0,0]: break if a[0]>a[1]:print(str(a[1])+" "+str(a[0])) else: print(str(a[0])+" "+str(a[1]))
File "/tmp/tmp4j5fu_b0/tmpcylbf8jv.py", line 1 While True: ^^^^ SyntaxError: invalid syntax
s401278574
p02397
u869301406
1458728857
Python
Python
py
Runtime Error
0
0
966
while True : 4 a,b = map(int,raw_input().split()) 5 6 i...
File "/tmp/tmpke9rysyv/tmpo_mv2ecy.py", line 2 4 a,b = map(int,raw_input().split()) ^ SyntaxError: invalid syntax
s012745678
p02397
u463783070
1458747893
Python
Python3
py
Runtime Error
0
0
113
x,y = map(int, input().split()) if x == 0 and y == 0: break elif x => y: print (y,x) else print (x,y)
File "/tmp/tmp6hon9w49/tmp8t8hnt47.py", line 4 elif x => y: ^ SyntaxError: invalid syntax
s858938917
p02397
u463783070
1458748098
Python
Python3
py
Runtime Error
0
0
113
x,y = map(int, input().split()) if x == 0 and y == 0: break elif x => y: print (y,x) else print (x,y)
File "/tmp/tmpfsd5uan6/tmpu4k4klhu.py", line 4 elif x => y: ^ SyntaxError: invalid syntax
s238441507
p02397
u463783070
1458748110
Python
Python3
py
Runtime Error
0
0
113
x,y = map(int, input().split()) if x == 0 and y == 0: break elif x => y: print (y,x) else print (x,y)
File "/tmp/tmpj2vcc7cp/tmpglv4udx0.py", line 4 elif x => y: ^ SyntaxError: invalid syntax
s166122667
p02397
u463783070
1458748128
Python
Python3
py
Runtime Error
0
0
113
x,y = map(int, input().split()) if x == 0 and y == 0: break elif x => y: print (y,x) else print (x,y)
File "/tmp/tmpp7x84zxz/tmpsii4wuj3.py", line 4 elif x => y: ^ SyntaxError: invalid syntax