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
s606427724
p02396
u327546577
1528136282
Python
Python3
py
Runtime Error
0
0
105
i = 1 while True: x = int(input) if x == 0: break print(f"Case {i}: {x}") i += 1
Traceback (most recent call last): File "/tmp/tmprw6uscg9/tmp_fy2pd22.py", line 3, in <module> x = int(input) ^^^^^^^^^^ TypeError: int() argument must be a string, a bytes-like object or a real number, not 'builtin_function_or_method'
s047193964
p02396
u767368698
1528419405
Python
Python3
py
Runtime Error
0
0
82
cnt = 1 while input() != 0: print('Case '+str(cnt)+': '+input()) cnt += 1
Traceback (most recent call last): File "/tmp/tmpqo7r4hkk/tmpcy7r6c85.py", line 2, in <module> while input() != 0: ^^^^^^^ EOFError: EOF when reading a line
s718763837
p02396
u767368698
1528419480
Python
Python3
py
Runtime Error
0
0
98
cnt = 1 c = input() while c != 0: print('Case '+str(cnt)+': '+c) c = input() cnt += 1
Traceback (most recent call last): File "/tmp/tmp8l7prr8l/tmp5az1b1o0.py", line 2, in <module> c = input() ^^^^^^^ EOFError: EOF when reading a line
s672988721
p02396
u138224929
1528609996
Python
Python3
py
Runtime Error
0
0
262
#include <iostream> #include <sstream> #include <sstring> using namespace std; int main(){ int i i == 1 while (1){ int x; cin >> x; cout<< "Case " << i << ": " << x << endl; if (x == 0){ break; }else{ i++ ; } } }
File "/tmp/tmpb9dcvv5y/tmpgfqer2h8.py", line 4 using namespace std; ^^^^^^^^^ SyntaxError: invalid syntax
s694288487
p02396
u138224929
1528610102
Python
Python3
py
Runtime Error
0
0
279
#include <iostream> #include <sstream> #include <sstring> using namespace std; int main(){ int i i == 1 while (1){ int x; cin >> x; cout<< "Case " << i << ": " << x << endl; if (x == 0){ break; abort(); }else{ i++ ; } } }
File "/tmp/tmpx3vvsaru/tmpc2pox0f8.py", line 4 using namespace std; ^^^^^^^^^ SyntaxError: invalid syntax
s682263181
p02396
u559106458
1528636665
Python
Python3
py
Runtime Error
0
0
103
n = 1 for x in input() if x=0: break else if 1<=x<=1000: print("Case",n+":",x) print(\n) n = n + 1
File "/tmp/tmpmlbmwvzt/tmpisnepl6b.py", line 2 for x in input() ^ SyntaxError: expected ':'
s380541337
p02396
u504401399
1529130892
Python
Python3
py
Runtime Error
0
0
174
li=[] while(a!=0): a=int(input()) li.append(a) for i in range(1,len(li)+1): if li[i]!=0: print("case {0}: {1}".format(i,li[i])) else: break
Traceback (most recent call last): File "/tmp/tmpa8esv9ge/tmpauc3j32e.py", line 2, in <module> while(a!=0): ^ NameError: name 'a' is not defined
s863245940
p02396
u119807026
1529986102
Python
Python3
py
Runtime Error
0
0
123
While (True): i += 1 x = int(input()) if x == 0: break else: print("Case %d: %d %(i, x))
File "/tmp/tmp6lyel3kf/tmpg9k03ow_.py", line 7 print("Case %d: %d %(i, x)) ^ SyntaxError: unterminated string literal (detected at line 7)
s600531718
p02396
u987236471
1530478115
Python
Python3
py
Runtime Error
0
0
97
i = 0 while True: i += i+1 n=int(input()) if x == 0: break print("Case {}: {}".format(i,x))
Traceback (most recent call last): File "/tmp/tmp2eebvo9u/tmpm9q378su.py", line 4, in <module> n=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s435623311
p02396
u987236471
1530478278
Python
Python3
py
Runtime Error
0
0
134
i = 0 while True:     x = int(input())     if x == 0: break     i = i + 1     print("Case " + str(i) + ": " + str(x))
File "/tmp/tmphms601ro/tmpfv_1_0vy.py", line 3     x = int(input()) ^ SyntaxError: invalid non-printable character U+00A0
s667975298
p02396
u987236471
1530478355
Python
Python3
py
Runtime Error
0
0
134
i = 0 while True:     x = int(input())     if x == 0: break     i = i + 1     print("Case " + str(i) + ": " + str(x))
File "/tmp/tmp0miwdkr_/tmpqbbcnu5i.py", line 3     x = int(input()) ^ SyntaxError: invalid non-printable character U+00A0
s979028140
p02396
u987236471
1530478362
Python
Python3
py
Runtime Error
0
0
135
i = 0 while True:     x = int(input())     if x == 0: break     i = i + 1     print("Case " + str(i) + ": " + str(x))
File "/tmp/tmp455hglz0/tmpdvm282rz.py", line 3     x = int(input()) ^ SyntaxError: invalid non-printable character U+00A0
s896157951
p02396
u987236471
1530478378
Python
Python3
py
Runtime Error
0
0
141
i = 0 while True:     x = int(input())     if x == 0: break     i = i + 1     print("Case " + str(i) + ": " + str(x))
File "/tmp/tmpv1w4lqrm/tmp5il9rr9b.py", line 3     x = int(input()) ^ SyntaxError: invalid non-printable character U+00A0
s770433290
p02396
u763301852
1363007692
Python
Python
py
Runtime Error
0
0
110
i = 0 while True: x = input() if x == 0: return 0 i += 1 print("Case %d: %d" % (i, x))
File "/tmp/tmpm774n1g8/tmpei0n4bsa.py", line 5 return 0 ^^^^^^^^ SyntaxError: 'return' outside function
s295275540
p02396
u912237403
1370856523
Python
Python
py
Runtime Error
0
0
95
import sys c = 0 for x in sys.stdin.readline(): c += 1 print 'Case %d: %s' %(c, int(x))
File "/tmp/tmpjiy_8xee/tmpz_c4pkfa.py", line 5 print 'Case %d: %s' %(c, int(x)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s641270008
p02396
u912237403
1370856700
Python
Python
py
Runtime Error
0
0
138
import sys c = 0 line = sys.stdin.readline(): while line: c += 1 print 'Case %d: %s' %(c, int(x)) line = sys.stdin.readline():
File "/tmp/tmplg30x4mw/tmphv_36kyk.py", line 3 line = sys.stdin.readline(): ^ SyntaxError: invalid syntax
s672083512
p02396
u912237403
1370856791
Python
Python
py
Runtime Error
0
0
141
import sys c = 0 line = sys.stdin.readline(): while line: c += 1 print 'Case %d: %s' %(c, int(line)) line = sys.stdin.readline():
File "/tmp/tmpoiwmyf_o/tmpoftthq4a.py", line 3 line = sys.stdin.readline(): ^ SyntaxError: invalid syntax
s902196875
p02396
u912237403
1370858647
Python
Python
py
Runtime Error
0
0
112
import sys c = 0 for line in sys.stdin: if line='0': break c += 1 print 'Case %d: %d' %(c,int(line))
File "/tmp/tmpdd7wdlts/tmpyokavu4y.py", line 4 if line='0': break ^^^^^^^^ SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
s919876585
p02396
u912237403
1371208789
Python
Python
py
Runtime Error
0
0
119
c = 0 while True: a = map(int, raw_input().split()) if a == 0: break c += 1 print 'Case %d: %d' %(c, a)
File "/tmp/tmpyhvvvc5n/tmpf58_ssi1.py", line 6 print 'Case %d: %d' %(c, a) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s886946624
p02396
u912237403
1371209213
Python
Python
py
Runtime Error
0
0
101
c = 0 while True: a = raw_input() if a == 0: break c += 1 print 'Case %d: %d' %(c, a)
File "/tmp/tmprik4ruek/tmpubfabngo.py", line 6 print 'Case %d: %d' %(c, a) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s267143403
p02396
u140201022
1381694234
Python
Python
py
Runtime Error
0
0
73
for i,w in enumerate(sys.stdin): print 'Case %s: ' % str(i+1) +w[:-1]
File "/tmp/tmpxbxjwfg5/tmpr3a5jwo4.py", line 2 print 'Case %s: ' % str(i+1) +w[:-1] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s405145333
p02396
u904989881
1391647586
Python
Python
py
Runtime Error
0
0
88
while True: i = input() if i != 0: print 'Case i: %d' %i else: False
File "/tmp/tmp0exhewjn/tmp5pvfkemb.py", line 4 print 'Case i: %d' %i ^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s524235498
p02396
u633068244
1393316582
Python
Python
py
Runtime Error
0
0
123
a = map(str,map(int, raw_input())) for i in a: if a[i] /= 0: print "Case",i+1,":",a[i] else: break
File "/tmp/tmpx9xm43xv/tmp6q0m6uh0.py", line 4 if a[i] /= 0: ^^ SyntaxError: invalid syntax
s235661150
p02396
u633068244
1393316979
Python
Python
py
Runtime Error
0
0
131
import sys i = 1 for line in sys.stdin: if line != 0: print "Case %d: %d" % (i, line) else: break i += 1
File "/tmp/tmpy05ugoiu/tmpxs30eo3h.py", line 6 print "Case %d: %d" % (i, line) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s517964002
p02396
u633068244
1393317202
Python
Python
py
Runtime Error
0
0
190
from __future__ import division, print_function from sys import stdin i = 1 for line in sys.stdin: if line != 0: print "Case %d: %d" % (i, line) else: break i += 1
File "/tmp/tmpoeur3nrd/tmpm0rmkv3k.py", line 7 print "Case %d: %d" % (i, line) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s676471089
p02396
u633068244
1393317214
Python
Python
py
Runtime Error
0
0
186
from __future__ import division, print_function from sys import stdin i = 1 for line in stdin: if line != 0: print "Case %d: %d" % (i, line) else: break i += 1
File "/tmp/tmpdrch088e/tmpws_dtmns.py", line 7 print "Case %d: %d" % (i, line) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s933578486
p02396
u633068244
1393317282
Python
Python
py
Runtime Error
0
0
186
from __future__ import division, print_function from sys import stdin i = 1 for line in stdin: if line != 0: print "Case %d: %d" % (i, line) else: break i += 1
File "/tmp/tmp_n6_cus6/tmpd8qgklki.py", line 7 print "Case %d: %d" % (i, line) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s222639199
p02396
u633068244
1393317373
Python
Python
py
Runtime Error
0
0
201
from __future__ import division, print_function from sys import stdin i = 1 for line in stdin: x = int(line) if line != 0: print "Case %d: %d" % (i, x) else: break i += 1
File "/tmp/tmp4fbl_4q9/tmp34my3w44.py", line 8 print "Case %d: %d" % (i, x) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s472325581
p02396
u633068244
1393317422
Python
Python
py
Runtime Error
0
0
201
from __future__ import division, print_function from sys import stdin i = 1 for line in stdin: x = int(line) if line != 0: print "Case %d: %d" % (i, x) else: break i += 1
File "/tmp/tmpsdmfwjak/tmpvc1mllsq.py", line 8 print "Case %d: %d" % (i, x) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s443761807
p02396
u633068244
1393317465
Python
Python
py
Runtime Error
0
0
184
from __future__ import division, print_function from sys import stdin i = 1 for line in stdin: x = int(line) if not x: break print "Case %d: %d" % (i, x) i += 1
File "/tmp/tmpn0ki4478/tmp2p9lnler.py", line 9 print "Case %d: %d" % (i, x) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s462129593
p02396
u633068244
1393317490
Python
Python
py
Runtime Error
0
0
188
from __future__ import division, print_function from sys import stdin i = 1 for line in stdin: x = int(line) if not x: break print "Case {}: {}".format(i, x) i += 1
File "/tmp/tmp4w8lv_mk/tmpqhlrtdbu.py", line 9 print "Case {}: {}".format(i, x) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s083644560
p02396
u633068244
1393317504
Python
Python
py
Runtime Error
0
0
188
from __future__ import division, print_function from sys import stdin i = 1 for line in stdin: x = int(line) if not x: break print 'Case {}: {}'.format(i, x) i += 1
File "/tmp/tmp6z24gie_/tmpgjb4fegh.py", line 9 print 'Case {}: {}'.format(i, x) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s774622693
p02396
u971748390
1398312805
Python
Python
py
Runtime Error
0
0
86
i=0 while 1: x = raw_input() i = i+1 if x == 0: break print 'Case %d :%d' %(i,x)
File "/tmp/tmpdkk9mysp/tmpua0ixsek.py", line 7 print 'Case %d :%d' %(i,x) ^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s481284189
p02396
u971748390
1398312893
Python
Python
py
Runtime Error
0
0
86
i=0 while 1: x = raw_input() i = i+1 if x == 0: break print 'Case %d :%d' %(i,x)
File "/tmp/tmp8lupzqy7/tmpbkneeas_.py", line 7 print 'Case %d :%d' %(i,x) ^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s203749680
p02396
u971748390
1398312931
Python
Python
py
Runtime Error
0
0
86
i=0 while 1: x = raw_input() i = i++ if x == 0: break print 'Case %d :%d' %(i,x)
File "/tmp/tmpizfetf2s/tmpgfw0n_2g.py", line 4 i = i++ ^ SyntaxError: invalid syntax
s275289490
p02396
u971748390
1398312931
Python
Python
py
Runtime Error
0
0
86
i=0 while 1: x = raw_input() i = i++ if x == 0: break print 'Case %d :%d' %(i,x)
File "/tmp/tmpuy3q4zjz/tmpq7yzsunt.py", line 4 i = i++ ^ SyntaxError: invalid syntax
s740576880
p02396
u971748390
1398312931
Python
Python
py
Runtime Error
0
0
86
i=0 while 1: x = raw_input() i = i++ if x == 0: break print 'Case %d :%d' %(i,x)
File "/tmp/tmpf5r_7e45/tmp4qgx3s0l.py", line 4 i = i++ ^ SyntaxError: invalid syntax
s892246379
p02396
u971748390
1398312931
Python
Python
py
Runtime Error
0
0
86
i=0 while 1: x = raw_input() i = i++ if x == 0: break print 'Case %d :%d' %(i,x)
File "/tmp/tmp3xb6z71p/tmpdmoqz8aq.py", line 4 i = i++ ^ SyntaxError: invalid syntax
s251063985
p02396
u814387366
1402555587
Python
Python
py
Runtime Error
0
0
69
i=0 while True : x=input() i+=1 print "Case "+str(i)+": "+str(x)
File "/tmp/tmpfrrpdapr/tmpghnj9mwc.py", line 5 print "Case "+str(i)+": "+str(x) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s721729038
p02397
u907607057
1530863319
Python
Python3
py
Runtime Error
0
0
178
while True: x, y = [int(i) for i in sys.stdin.readline().split(' ')] if x == 0 & y == 0: break elif x <= y: print(x, y) else: print(y, x)
Traceback (most recent call last): File "/tmp/tmpz9cjfxjl/tmpsfv86w3u.py", line 2, in <module> x, y = [int(i) for i in sys.stdin.readline().split(' ')] ^^^ NameError: name 'sys' is not defined
s082862207
p02397
u800021849
1531466176
Python
Python3
py
Runtime Error
0
0
115
while 1: a = list(map(int, input().split())) if a == 0 and b == 0: break print(min(a), max(a))
Traceback (most recent call last): File "/tmp/tmpuw_7vvh0/tmpg4euntaa.py", line 2, in <module> a = list(map(int, input().split())) ^^^^^^^ EOFError: EOF when reading a line
s588495619
p02397
u452254177
1531495162
Python
Python3
py
Runtime Error
0
0
167
while True: x,y = [int(i) for i in input().split()] if x >= y: print (y,x) elif x < y : print (x,y) elif x==0 and y==0: break
Traceback (most recent call last): File "/tmp/tmpdrpc2py3/tmplilhk0_l.py", line 2, in <module> x,y = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s496334105
p02397
u452254177
1531496036
Python
Python3
py
Runtime Error
0
0
165
while True: x,y=[int (i) for i in input().split()] if x==0 and y==0: break if x >= y: print (y,x) elif x < y : print (x,y)
File "/tmp/tmp1dhk71q9/tmpeysw1viq.py", line 3 if x==0 and y==0: ^ IndentationError: unindent does not match any outer indentation level
s458999660
p02397
u404682284
1535026516
Python
Python3
py
Runtime Error
0
0
155
package main import "fmt" func main(){ var a, b int for ;;{ fmt.Scan(&a, &b) if a == 0 && b == 0 { break } fmt.Printf("%d %d\n", b, a) } }
File "/tmp/tmp41b4t4we/tmpv6ixfxb7.py", line 1 package main ^^^^ SyntaxError: invalid syntax
s154317350
p02397
u365921604
1535073526
Python
Python3
py
Runtime Error
0
0
165
for i in range(0, 3000): array = map(int, input().split(' ')) if x == 0 and y == 0: break else: print(' '.join(map(str, sorted(array))))
Traceback (most recent call last): File "/tmp/tmpu5rwy48u/tmprekpknys.py", line 2, in <module> array = map(int, input().split(' ')) ^^^^^^^ EOFError: EOF when reading a line
s969454334
p02397
u365921604
1535073566
Python
Python3
py
Runtime Error
0
0
179
for i in range(0, 3000): array = map(int, input().split(' ')) if array[0] == 0 and array[1] == 0: break else: print(' '.join(map(str, sorted(array))))
Traceback (most recent call last): File "/tmp/tmp4autuzx0/tmpx9e1x71u.py", line 2, in <module> array = map(int, input().split(' ')) ^^^^^^^ EOFError: EOF when reading a line
s197445151
p02397
u365921604
1535073598
Python
Python3
py
Runtime Error
0
0
196
for i in range(0, 3000): array = map(int, input().split(' ')) print(array) if array[0] == 0 and array[1] == 0: break else: print(' '.join(map(str, sorted(array))))
Traceback (most recent call last): File "/tmp/tmp0lmr5vm1/tmp7wpn0edr.py", line 2, in <module> array = map(int, input().split(' ')) ^^^^^^^ EOFError: EOF when reading a line
s882243765
p02397
u883600689
1535354679
Python
Python3
py
Runtime Error
0
0
113
while True: a,b=[int(x) for x in input().split()] if a==0 and b==0: break elif a<b: print(a,b) else: print(b,a)
File "/tmp/tmptvf0vnwb/tmp1ho7z2yh.py", line 2 a,b=[int(x) for x in input().split()] ^ IndentationError: expected an indented block after 'while' statement on line 1
s039134405
p02397
u677096240
1535432315
Python
Python3
py
Runtime Error
0
0
205
def check(lis): if lis[0] > lis[1]: return lis[::-1] else: return lis while True: l = list(map(int, input().spilt())) if sum(l) == 0: break print(*check(l))
Traceback (most recent call last): File "/tmp/tmp12h9gg4d/tmpctpecf3m.py", line 10, in <module> l = list(map(int, input().spilt())) ^^^^^^^ EOFError: EOF when reading a line
s223471744
p02397
u281808376
1540287386
Python
Python3
py
Runtime Error
0
0
244
while True: str=input().split int=[int(s) for s in str] if int[0]==0 and int[1]==0: break if int[0]<int[1]: print("{} {}".format(int[0],int[1])) if int[0]>int[1]: print("{} {}".format(int[1],int[0]))
Traceback (most recent call last): File "/tmp/tmp9m2654xf/tmpdux5x7ki.py", line 2, in <module> str=input().split ^^^^^^^ EOFError: EOF when reading a line
s494771656
p02397
u281808376
1540287441
Python
Python3
py
Runtime Error
0
0
257
while True: str_=input().split int_=[int(s) for s in str_] if int_[0]==0 and int_[1]==0: break if int_[0]<int_[1]: print("{} {}".format(int_[0],int_[1])) if int_[0]>int_[1]: print("{} {}".format(int_[1],int_[0]))
Traceback (most recent call last): File "/tmp/tmprgrm75xh/tmpficmo7za.py", line 2, in <module> str_=input().split ^^^^^^^ EOFError: EOF when reading a line
s098624211
p02397
u281808376
1540287529
Python
Python3
py
Runtime Error
0
0
218
while True: x=input().split y=[int(s) for s in x] if y[0]==0 and y[1]==0: break if y[0]<y[1]: print("{} {}".format(y[0],y[1])) if y[0]>y[1]: print("{} {}".format(y[1],y[0]))
Traceback (most recent call last): File "/tmp/tmp3qjw_0rc/tmpmgsxhtzq.py", line 2, in <module> x=input().split ^^^^^^^ EOFError: EOF when reading a line
s141195319
p02397
u281808376
1540287625
Python
Python3
py
Runtime Error
0
0
220
while True: x=input().split y=[int(x[0]),int(x[1])] if y[0]==0 and y[1]==0: break if y[0]<y[1]: print("{} {}".format(y[0],y[1])) if y[0]>y[1]: print("{} {}".format(y[1],y[0]))
Traceback (most recent call last): File "/tmp/tmp4xgvaj2w/tmpa7gilzxc.py", line 2, in <module> x=input().split ^^^^^^^ EOFError: EOF when reading a line
s855278238
p02397
u281808376
1540287659
Python
Python3
py
Runtime Error
0
0
224
while True: x=input().split y=[int(x[0]),int(x[1])] if y[0]==0 and y[1]==0: break elif y[0]<y[1]: print("{} {}".format(y[0],y[1])) elif y[0]>y[1]: print("{} {}".format(y[1],y[0]))
Traceback (most recent call last): File "/tmp/tmps6rbqj1r/tmpozzi5z1p.py", line 2, in <module> x=input().split ^^^^^^^ EOFError: EOF when reading a line
s735042146
p02397
u596993252
1540456268
Python
Python3
py
Runtime Error
0
0
170
while True: input=input() a,b=map(int,input.split()) if a==b==0: break if a<b: print(f"{a} {b}") else: print(f"{b} {a}")
Traceback (most recent call last): File "/tmp/tmpif76qs_d/tmps8e7j1zr.py", line 2, in <module> input=input() ^^^^^^^ EOFError: EOF when reading a line
s232475497
p02397
u596993252
1540456362
Python
Python3
py
Runtime Error
0
0
194
while True: input=input() a,b=map(int,input.split()) if (a==b): if (a==0): break if (a<b): print(f"{a} {b}") else: print(f"{b} {a}")
Traceback (most recent call last): File "/tmp/tmpw177u7_d/tmpjmo24278.py", line 2, in <module> input=input() ^^^^^^^ EOFError: EOF when reading a line
s818894501
p02397
u035064179
1540456535
Python
Python3
py
Runtime Error
0
0
188
x, y = map(int, input().split()) for i in range(0, 10001): if x == 0 && y == 0: break if x > y: temp = int(x) x = y y = temp print(f'{x} {y}')
File "/tmp/tmpup5su5mf/tmpmwh90m96.py", line 3 if x == 0 && y == 0: ^ SyntaxError: invalid syntax
s699977411
p02397
u861678859
1540456569
Python
Python3
py
Runtime Error
0
0
120
while True: x,y = map(int,input().split()) if x > y: print(f'{y}{x}) else : print(f'{x}{y})
File "/tmp/tmpq8k5p5st/tmpn2fsflv0.py", line 4 print(f'{y}{x}) ^ SyntaxError: unterminated string literal (detected at line 4)
s395372600
p02397
u861678859
1540456642
Python
Python3
py
Runtime Error
0
0
159
while True: x,y = map(int,input().split()) if x > y: print(f'{y}{x}) else : print(f'{x}{y}) if x == 0 or y == 0: break
File "/tmp/tmpl8vgfrk2/tmpepqwcgiz.py", line 4 print(f'{y}{x}) ^ SyntaxError: unterminated string literal (detected at line 4)
s949799829
p02397
u861678859
1540456663
Python
Python3
py
Runtime Error
0
0
164
while True: x,y = map(int,input().split()) if x > y: print(f'{y}{x}) elif x < y: print(f'{x}{y}) if x == 0 or y == 0: break
File "/tmp/tmpgw7l1_vw/tmpcn6m5jwj.py", line 4 print(f'{y}{x}) ^ SyntaxError: unterminated string literal (detected at line 4)
s056921802
p02397
u861678859
1540456686
Python
Python3
py
Runtime Error
0
0
165
while True: x,y = map(int,input().split()) if x > y: print(f'{y}{x}) elif x < y: print(f'{x}{y}) if x == 0 and y == 0: break
File "/tmp/tmpoe3iy9t5/tmp_skahwi4.py", line 4 print(f'{y}{x}) ^ SyntaxError: unterminated string literal (detected at line 4)
s610144619
p02397
u861678859
1540456705
Python
Python3
py
Runtime Error
0
0
167
while True: x,y = map(int,input().split()) if x > y: print(f'{y}{x}) elif x < y: print(f'{x}{y}) elif x == 0 and y == 0: break
File "/tmp/tmpgvlv7fxz/tmpickbxbtf.py", line 4 print(f'{y}{x}) ^ SyntaxError: unterminated string literal (detected at line 4)
s389230839
p02397
u861678859
1540457010
Python
Python3
py
Runtime Error
0
0
214
while True: x,y = map(int,input().split()) if x > y: print(f"{y} {x}") elif x < y: print(f"{x} {y}") elif x == y: print(f"{x} {y}") elif x == 0 and y == 0: break
Traceback (most recent call last): File "/tmp/tmphvd070o6/tmpamfyffvt.py", line 2, in <module> x,y = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s295872407
p02397
u861678859
1540457345
Python
Python3
py
Runtime Error
0
0
172
while True: x,y = map(int,input().split()) if x > y: print(f"{y} {x}") elif x <= y: print(f"{x} {y}") elif x == 0 and y == 0: break
Traceback (most recent call last): File "/tmp/tmpnot0uwrx/tmpc8ahz9r3.py", line 2, in <module> x,y = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s834243807
p02397
u184749404
1540731371
Python
Python3
py
Runtime Error
0
0
115
x,y=map(int,input().split()) if x>y : print(y,x) elif x=y=0: print() else : print(x,y) for i in :
File "/tmp/tmpul4m5jh_/tmpqoeiltp5.py", line 4 elif x=y=0: ^ SyntaxError: invalid syntax
s078384816
p02397
u184749404
1540731483
Python
Python3
py
Runtime Error
0
0
125
while True : x,y=map(int,input().split()) if x>y : print(y,x) elif x=y=0: print(end) else : print(x,y)
File "/tmp/tmpia3mxjsg/tmpbsb60uuj.py", line 5 elif x=y=0: ^ SyntaxError: invalid syntax
s487273080
p02397
u901205536
1540814029
Python
Python3
py
Runtime Error
0
0
145
repetition = True while repetition == True: a, b = map(int, input().split(" ")) if a > b: a, b = b, a print("%d %d" % (a,b))
Traceback (most recent call last): File "/tmp/tmpa00s8jg7/tmp6w_cornc.py", line 3, in <module> a, b = map(int, input().split(" ")) ^^^^^^^ EOFError: EOF when reading a line
s908329434
p02397
u184749404
1541161518
Python
Python3
py
Runtime Error
0
0
132
x,y = int(input()) while True if x == y: break elif x < y: print(x,y) else: print(y,x)
File "/tmp/tmppi5ha7k1/tmp0zeh92ns.py", line 2 while True ^ SyntaxError: expected ':'
s058840088
p02397
u184749404
1541161594
Python
Python3
py
Runtime Error
0
0
146
x,y = map(int. input ().split()) while True if x == y: break elif x < y: print(x,y) else: print(y,x)
File "/tmp/tmptwzd573f/tmpqbi39cm1.py", line 2 while True ^ SyntaxError: expected ':'
s809940668
p02397
u184749404
1541161733
Python
Python3
py
Runtime Error
0
0
150
x,y = map(int. input ().split()) while True if x == y == 0 break elif x < y: print(x,y) else: print(y,x)
File "/tmp/tmpyoy22noq/tmpsiipt92d.py", line 2 while True ^ SyntaxError: expected ':'
s197948991
p02397
u184749404
1541161753
Python
Python3
py
Runtime Error
0
0
156
x,y = map(int. input ().split()) while True if x == 0 and y == 0 break elif x < y: print(x,y) else: print(y,x)
File "/tmp/tmppidxn6u7/tmp5joudc30.py", line 2 while True ^ SyntaxError: expected ':'
s611297220
p02397
u184749404
1541161762
Python
Python3
py
Runtime Error
0
0
158
x,y = map(int. input ().split()) while True if x == 0 and y == 0 : break elif x < y: print(x,y) else: print(y,x)
File "/tmp/tmpway1y_am/tmpp1tdvair.py", line 2 while True ^ SyntaxError: expected ':'
s752898481
p02397
u184749404
1541161794
Python
Python3
py
Runtime Error
0
0
155
x,y = map(int,input().split()) while True if x == 0 and y == 0: break elif x < y: print(x,y) else: print(y,x)
File "/tmp/tmp1osd8zq4/tmpns2cqp7n.py", line 2 while True ^ SyntaxError: expected ':'
s311807838
p02397
u184749404
1541162068
Python
Python3
py
Runtime Error
0
0
140
while True: x,y = int(input()) if x == 0 and y == 0: break elif x < y: print(x,y) else: print(y,x)
Traceback (most recent call last): File "/tmp/tmp6rr1hq2g/tmp56uaufb0.py", line 2, in <module> x,y = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s932160026
p02397
u550922601
1545473309
Python
Python3
py
Runtime Error
0
0
92
while True: x, y = list(map(int, input().split())) if x == 0 and y == 0:
File "/tmp/tmpa5wh5f86/tmpw_k8ge4u.py", line 10 IndentationError: expected an indented block after 'if' statement on line 4
s165404653
p02397
u962909487
1545814567
Python
Python3
py
Runtime Error
0
0
137
while True: x,y = map(int(input().split()) if (x,y) ==(0,0): break if x < y: print(x,y) else: print(y,x)
File "/tmp/tmpslo8didx/tmphbsbu150.py", line 2 x,y = map(int(input().split()) ^ SyntaxError: '(' was never closed
s468111982
p02397
u316246166
1545831615
Python
Python3
py
Runtime Error
0
0
143
for i in range(10000): a, b = map(int, input().split()) if a > b: print(a, b) else print(b, a)
File "/tmp/tmpc0jn4pqa/tmpfkq7qj3h.py", line 6 else ^ SyntaxError: expected ':'
s515871739
p02397
u316246166
1545831652
Python
Python3
py
Runtime Error
0
0
144
for i in range(3000): a, b = map(int(), input().split()) if a > b: print(a, b) else print(b, a)
File "/tmp/tmpmbvj5n21/tmpits_e7wt.py", line 6 else ^ SyntaxError: expected ':'
s743116572
p02397
u316246166
1545831738
Python
Python3
py
Runtime Error
0
0
142
for i in range(3000): a, b = map(int, input().split()) if a > b: print(a, b) else print(b, a)
File "/tmp/tmpcpj243u6/tmpmqfew0e4.py", line 6 else ^ SyntaxError: expected ':'
s894178974
p02397
u316246166
1545831806
Python
Python3
py
Runtime Error
0
0
183
for i in range(3000): a, b = map(int, input().split()) if a == 0 and b == 0 break elif a > b: print(a, b) else print(b, a)
File "/tmp/tmp7my0nafk/tmpmwv75una.py", line 4 if a == 0 and b == 0 ^ SyntaxError: expected ':'
s231584821
p02397
u316246166
1545831844
Python
Python3
py
Runtime Error
0
0
183
for i in range(3000): a, b = map(int, input().split()) if a == 0 and b == 0 break elif a < b: print(a, b) else print(b, a)
File "/tmp/tmpzq_3a_ay/tmp31h1tqmh.py", line 4 if a == 0 and b == 0 ^ SyntaxError: expected ':'
s899892471
p02397
u316246166
1545832042
Python
Python3
py
Runtime Error
0
0
177
for i in range(3000): a, b = map(int, input().split()) if a == b == 0 break elif a < b: print(a, b) else print(b, a)
File "/tmp/tmp6g5p8dmk/tmppprx_8ah.py", line 4 if a == b == 0 ^ SyntaxError: expected ':'
s014135383
p02397
u316246166
1545832050
Python
Python3
py
Runtime Error
0
0
180
for i in range(3000): a, b = map(int, input().split()) if a == b == 0 break if a < b: print(a, b) else print(b, a)
File "/tmp/tmpm0o_p34j/tmp49q0a1rm.py", line 4 if a == b == 0 ^ SyntaxError: expected ':'
s016169446
p02397
u643542669
1545842374
Python
Python3
py
Runtime Error
0
0
163
while True: x, y = map(int, inpu().split()) if x == 0 and y == 0: break if x > y: z = x x = y y = z print(x, y)
Traceback (most recent call last): File "/tmp/tmpwwauz1pb/tmpn_x4cwwx.py", line 2, in <module> x, y = map(int, inpu().split()) ^^^^ NameError: name 'inpu' is not defined. Did you mean: 'input'?
s325930440
p02397
u013132149
1546159397
Python
Python
py
Runtime Error
0
0
107
while True x,y = (int,input().split) if x!=0 and y!=0: print(min([x,y]), max([x,y]))
File "/tmp/tmpnbzwxti3/tmpdchi0bi7.py", line 1 while True ^ SyntaxError: expected ':'
s557188031
p02397
u013132149
1546159518
Python
Python3
py
Runtime Error
0
0
113
for i in range(3000): x,y = (int,input().split) if x!=0 and y!=0: print(min([x,y]), max([x,y]))
Traceback (most recent call last): File "/tmp/tmpvcrsldzg/tmpku0dyoqd.py", line 2, in <module> x,y = (int,input().split) ^^^^^^^ EOFError: EOF when reading a line
s694666627
p02397
u013132149
1546159531
Python
Python3
py
Runtime Error
0
0
102
while True x,y = (int,input().split) if x!=0 and y!=0: print(min([x,y]), max([x,y]))
File "/tmp/tmpp5y0ip1l/tmpep0x0j7p.py", line 1 while True ^ SyntaxError: expected ':'
s604656137
p02397
u013132149
1546159574
Python
Python3
py
Runtime Error
0
0
137
for i in range(3000): x,y = (int,input().split) if x!=0 and y!=0: print(min([x,y]), max([x,y])) else: break
Traceback (most recent call last): File "/tmp/tmpt7829sx2/tmpwtitrp1c.py", line 2, in <module> x,y = (int,input().split) ^^^^^^^ EOFError: EOF when reading a line
s524793610
p02397
u013132149
1546159709
Python
Python3
py
Runtime Error
0
0
166
while True x,y = (int,input().split) if (x,y) == (0,0): break else: if x < y: print(x,y) else: print(y,x)
File "/tmp/tmpcamoptes/tmpdt62ummb.py", line 1 while True ^ SyntaxError: expected ':'
s614380123
p02397
u013132149
1546159750
Python
Python3
py
Runtime Error
0
0
169
while True x,y = map(int,input().split) if (x,y) == (0,0): break else: if x < y: print(x,y) else: print(y,x)
File "/tmp/tmpixyeb28y/tmpdpdziy0b.py", line 1 while True ^ SyntaxError: expected ':'
s795483646
p02397
u013132149
1546159833
Python
Python3
py
Runtime Error
0
0
171
while True: x,y = map(int,input().split) if (x,y) == (0,0): break else: if x < y: print(x,y) else: print(y,x)
Traceback (most recent call last): File "/tmp/tmp6yv33_ev/tmpmmt_x855.py", line 2, in <module> x,y = map(int,input().split) ^^^^^^^ EOFError: EOF when reading a line
s844116349
p02397
u563075864
1546413712
Python
Python
py
Runtime Error
0
0
143
while(1): a,b = [int(i) for i in input().split()] if a == 0 and b == 0: break c = [a,b] c.sort() print(*c,sep=" ")
Traceback (most recent call last): File "/tmp/tmpv0beopbf/tmpsanj73rp.py", line 2, in <module> a,b = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s126661046
p02397
u733357255
1551418170
Python
Python3
py
Runtime Error
0
0
108
while True: a,b = map(int, input().split()) if a,b = 0,0: break if a > b: a,b = b,a print(f"{a} {b}")
File "/tmp/tmp1zi8dupi/tmp89ekr8ft.py", line 4 if a,b = 0,0: break ^ SyntaxError: invalid syntax
s491012935
p02397
u733357255
1551418238
Python
Python3
py
Runtime Error
0
0
109
while True: a,b = map(int, input().split()) if a,b == 0,0: break if a > b: a,b = b,a print(f"{a} {b}")
File "/tmp/tmpzco3269l/tmpkokfvz0p.py", line 4 if a,b == 0,0: break ^ SyntaxError: invalid syntax
s602202142
p02397
u175224634
1551533681
Python
Python3
py
Runtime Error
0
0
160
while True: a, b = map(int, input().split()) if a == 0 and b == 0: break if a > b: print(f"b a"") else: print(f"a b"")
File "/tmp/tmpt5fhuj7i/tmp094dhax5.py", line 6 print(f"b a"") ^ SyntaxError: unterminated string literal (detected at line 6)
s661298001
p02397
u175224634
1551533763
Python
Python3
py
Runtime Error
0
0
158
while True: a, b = map(int, input().split()) if a == 0 and b == 0: break if a > b: print(f'b a") else: print(f"a b")
File "/tmp/tmpwd714byj/tmp570og_h_.py", line 6 print(f'b a") ^ SyntaxError: unterminated string literal (detected at line 6)
s953771744
p02397
u984892564
1551540731
Python
Python3
py
Runtime Error
0
0
198
for i in range(3000): string = input() numbers = string.split(' ') x, y = numbers if x = 0 and y = 0: break elif x < y: print(x, y) else: print(y, x)
File "/tmp/tmpvqfn7aiv/tmpn6q4imqd.py", line 5 if x = 0 and y = 0: ^^^^^ SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
s295201728
p02397
u605451279
1555758812
Python
Python3
py
Runtime Error
0
0
157
for i in range(3000): a = input().split() x = int(a[0]) y = int(a[1]) if x == y: print(x,y) elif x < y: print(x,y) else: print(y,x)
Traceback (most recent call last): File "/tmp/tmpmgqqzpz2/tmpbb5srga4.py", line 2, in <module> a = input().split() ^^^^^^^ EOFError: EOF when reading a line
s587779323
p02397
u928633434
1555812508
Python
Python3
py
Runtime Error
0
0
110
i = 1 while True: x = input() if x == "0": break print ("Case " + str(i) + ": " + str(x)) i += 1
Traceback (most recent call last): File "/tmp/tmpvt5qlyc6/tmpsqczxqsz.py", line 4, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s584737457
p02397
u928633434
1555812579
Python
Python3
py
Runtime Error
0
0
181
while True: x,y = (int(x) for x in input().split()) if x == "0" and y == "0": break if x > y: print (str(x) + " " + str(y)) else: print (str(y) + " " + str(x))
Traceback (most recent call last): File "/tmp/tmp448rhqoc/tmp_tyidx86.py", line 2, in <module> x,y = (int(x) for x in input().split()) ^^^^^^^ EOFError: EOF when reading a line