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
s078471599
p02393
u498462680
1546225837
Python
Python3
py
Runtime Error
0
0
103
InData=input().split Indata = map(int, InData) sorted = sort(InData) print(' '.join(map(str, sorted)))
Traceback (most recent call last): File "/tmp/tmpgaa4j5fg/tmpr8km0cee.py", line 1, in <module> InData=input().split ^^^^^^^ EOFError: EOF when reading a line
s781159924
p02393
u498462680
1546226465
Python
Python3
py
Runtime Error
0
0
105
InData=input().split Indata = map(int, InData) sorted = sorted(InData) print(' '.join(map(str, sorted)))
Traceback (most recent call last): File "/tmp/tmps9gj4cf8/tmp8yqm7_zs.py", line 1, in <module> InData=input().split ^^^^^^^ EOFError: EOF when reading a line
s672095338
p02393
u552594238
1546239141
Python
Python3
py
Runtime Error
0
0
123
a=input() b=a.split() c=list() for d in b: c.append(int(d)) d=sorted(c) print(d[0],d[1],d[2])
File "/tmp/tmp93xgonuh/tmpml0ga2p7.py", line 2 b=a.split() IndentationError: unexpected indent
s553269499
p02393
u733357255
1551348663
Python
Python3
py
Runtime Error
0
0
225
def swap(a,b): x = a a = b b = x ''' l = input().split() l = list(map(int, l)) a,b,c = l[0],l[1],l[2] ''' a,b,c = map(int, input().split) if a > b: a,b = b,a if b > c: b,c = c,b if a > b: a,b = b,a print(a,b,c)
Traceback (most recent call last): File "/tmp/tmp28matcm1/tmp8ftvxlom.py", line 12, in <module> a,b,c = map(int, input().split) ^^^^^^^ EOFError: EOF when reading a line
s799995552
p02393
u733357255
1551348677
Python
Python3
py
Runtime Error
0
0
188
''' l = input().split() l = list(map(int, l)) a,b,c = l[0],l[1],l[2] ''' a,b,c = map(int, input().split) if a > b: a,b = b,a if b > c: b,c = c,b if a > b: a,b = b,a print(a,b,c)
Traceback (most recent call last): File "/tmp/tmpqk6i_ufh/tmp_ubd7c06.py", line 8, in <module> a,b,c = map(int, input().split) ^^^^^^^ EOFError: EOF when reading a line
s716971126
p02393
u870970010
1555691463
Python
Python
py
Runtime Error
0
0
231
three=input() a=three.split()[0] b=three.split()[1] c=three.split()[2] d=min(a,b) e=max(a,b) if c<d: print("{0} {1} {2}".format(c,d,e)) elif c>e: print("{0} {1} {2}".format(d,e,c)) else print("{0} {1} {2}".format(d,,c,e))
File "/tmp/tmpib6jl5gb/tmp2hfe4ex0.py", line 13 else ^ SyntaxError: expected ':'
s006467749
p02393
u870970010
1555691566
Python
Python
py
Runtime Error
0
0
232
three=input() a=three.split()[0] b=three.split()[1] c=three.split()[2] d=min(a,b) e=max(a,b) if c<d: print("{0} {1} {2}".format(c,d,e)) elif c>e: print("{0} {1} {2}".format(d,e,c)) else: print("{0} {1} {2}".format(d,c,e))
Traceback (most recent call last): File "/tmp/tmpmc_zgmah/tmp__zck2sw.py", line 1, in <module> three=input() ^^^^^^^ EOFError: EOF when reading a line
s536156461
p02393
u870970010
1555691628
Python
Python
py
Runtime Error
0
0
235
three=input() a=three.split()[0] b=three.split()[1] c=three.split()[2] d=min(a,b) e=max(a,b) if c<d: print("{0} {1} {2}".format(c,d,e)) elif c>e: print("{0} {1} {2}".format(d,e,c)) else: print("{0} {1} {2}".format(d,c,e))
Traceback (most recent call last): File "/tmp/tmpevlhju_v/tmpe0xhygzb.py", line 1, in <module> three=input() ^^^^^^^ EOFError: EOF when reading a line
s158135381
p02393
u870970010
1555691647
Python
Python
py
Runtime Error
0
0
244
three=input() a=three.split(" ")[0] b=three.split(" ")[1] c=three.split(" ")[2] d=min(a,b) e=max(a,b) if c<d: print("{0} {1} {2}".format(c,d,e)) elif c>e: print("{0} {1} {2}".format(d,e,c)) else: print("{0} {1} {2}".format(d,c,e))
Traceback (most recent call last): File "/tmp/tmpwzz0vm3q/tmppvrqg6u2.py", line 1, in <module> three=input() ^^^^^^^ EOFError: EOF when reading a line
s621224452
p02393
u525395303
1555911167
Python
Python3
py
Runtime Error
0
0
3
ko
Traceback (most recent call last): File "/tmp/tmpgtus2psr/tmpv5rcl4yc.py", line 1, in <module> ko NameError: name 'ko' is not defined
s776403010
p02393
u525395303
1555911204
Python
Python3
py
Runtime Error
0
0
2
s
Traceback (most recent call last): File "/tmp/tmpa_zbxcdj/tmpu_eefx_n.py", line 1, in <module> s NameError: name 's' is not defined
s235740311
p02393
u651717882
1555944255
Python
Python3
py
Runtime Error
0
0
103
a,b,c = input.split() a = int(3) b = int(2) c = int(4) numbers = [a,b,c] numbers.sort() print(numbers)
Traceback (most recent call last): File "/tmp/tmpel2ywfdn/tmph6jsguoo.py", line 1, in <module> a,b,c = input.split() ^^^^^^^^^^^ AttributeError: 'builtin_function_or_method' object has no attribute 'split'
s323741107
p02393
u654661069
1555979315
Python
Python3
py
Runtime Error
0
0
123
list = sorted(map(int,raw_input().split())) strlist = map(str,list) print strlist[0] + ' ' + strlist[1] + ' ' + strlist[2]
File "/tmp/tmpmid57ty6/tmpdq5jqwbd.py", line 3 print strlist[0] + ' ' + strlist[1] + ' ' + strlist[2] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s830220345
p02393
u816538599
1555980689
Python
Python3
py
Runtime Error
0
0
187
a, b, c= map(int, input().split()) if a<=b<=c:print(a, b, c) if b<a<=c:print(b, a, c) if a<=c<=b:print(a, c, b) if b<c<=a:print(b, c, a) if c<a<=b:print(c, a, b) if c<=b<=a:print(c, b, a
File "/tmp/tmpk00j45kl/tmp86cdms2j.py", line 7 if c<=b<=a:print(c, b, a ^ SyntaxError: '(' was never closed
s464011329
p02393
u816538599
1555980708
Python
Python3
py
Runtime Error
0
0
187
a, b, c= map(int, input().split()) if a<=b<=c:print(a, b, c) if b<a<=c:print(b, a, c) if a<=c<=b:print(a, c, b) if b<c<=a:print(b, c, a) if c<a<=b:print(c, a, b) if c<=b<=a:print(c, b, a
File "/tmp/tmptudo7hm6/tmp2wjz589d.py", line 7 if c<=b<=a:print(c, b, a ^ SyntaxError: '(' was never closed
s134007140
p02393
u108130680
1556078767
Python
Python3
py
Runtime Error
0
0
92
a,b,c = map(int, input().split())  org_list =[a, b, c]  org_list.sort() print(org_list)
File "/tmp/tmpkyw6gtmn/tmpqfni9d_v.py", line 2  org_list =[a, b, c] ^ SyntaxError: invalid non-printable character U+3000
s155239746
p02393
u108130680
1556113579
Python
Python3
py
Runtime Error
0
0
89
a,b,c = map(int, input().split()) org_list =[a, b, c]  org_list.sort() print(org_list)
File "/tmp/tmp3459fssg/tmpmv26_zqp.py", line 2 org_list =[a, b, c]  ^ SyntaxError: invalid non-printable character U+3000
s496756571
p02393
u586792237
1556116455
Python
Python3
py
Runtime Error
0
0
69
p = [x, y, z] x, y, z = map(int, input().split()) p.sort() print(p)
Traceback (most recent call last): File "/tmp/tmpd242ce8m/tmptou5r1nk.py", line 1, in <module> p = [x, y, z] ^ NameError: name 'x' is not defined
s847469440
p02393
u586792237
1556116497
Python
Python3
py
Runtime Error
0
0
69
p = [x, y, z] x, y, z = map(int, input().split()) p.sort() print(p)
Traceback (most recent call last): File "/tmp/tmplzz3a72y/tmp7l7f5o28.py", line 1, in <module> p = [x, y, z] ^ NameError: name 'x' is not defined
s414255427
p02393
u482227082
1556351441
Python
Python3
py
Runtime Error
0
0
88
array = input().split().sort() for i in range(len(array)): print(array[i], end="")
Traceback (most recent call last): File "/tmp/tmp5wsjfekt/tmps3jbw9az.py", line 1, in <module> array = input().split().sort() ^^^^^^^ EOFError: EOF when reading a line
s404681155
p02393
u482227082
1556351461
Python
Python3
py
Runtime Error
0
0
82
array = input().split().sort() for i in range(0..2): print(array[i], end="")
File "/tmp/tmp6wyenk7s/tmpu7qmdkyx.py", line 3 for i in range(0..2): ^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s134840852
p02393
u482227082
1556351537
Python
Python3
py
Runtime Error
0
0
69
array = input().split().sort() for i in array: print(i, end="")
Traceback (most recent call last): File "/tmp/tmp18p8ol2t/tmp000pep7j.py", line 1, in <module> array = input().split().sort() ^^^^^^^ EOFError: EOF when reading a line
s261001104
p02393
u482227082
1556352141
Python
Python3
py
Runtime Error
0
0
70
array = input().split().sort()) for i in array: print(i, end="")
File "/tmp/tmpvew4t1qv/tmp5l06sh_r.py", line 1 array = input().split().sort()) ^ SyntaxError: unmatched ')'
s939623185
p02393
u482227082
1556352153
Python
Python3
py
Runtime Error
0
0
69
array = input().split().sort() for i in array: print(i, end="")
Traceback (most recent call last): File "/tmp/tmp7a30eh8r/tmp2kivtoy8.py", line 1, in <module> array = input().split().sort() ^^^^^^^ EOFError: EOF when reading a line
s252298023
p02393
u630518143
1556506639
Python
Python3
py
Runtime Error
0
0
236
nums = [int(e) for e in input().split()] for i in range(len(nums)): for j in range(i): if nums[i]<nums[j]: a = nums[i] nums[i] = nums[j] nums[j] = a nums_2 = " ".join(nums) print(nums_2)
Traceback (most recent call last): File "/tmp/tmp2vwdex_2/tmp9rh447zy.py", line 1, in <module> nums = [int(e) for e in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s185011667
p02393
u748884386
1556619541
Python
Python3
py
Runtime Error
0
0
48
a=list(map(int,input().split())) print(sort(a))
Traceback (most recent call last): File "/tmp/tmputwpg_cs/tmpvtrhl_e3.py", line 1, in <module> a=list(map(int,input().split())) ^^^^^^^ EOFError: EOF when reading a line
s508876483
p02393
u610816226
1556624038
Python
Python3
py
Runtime Error
0
0
74
x = [int(x) for x in input().split()] print('{} {} {}'.format(sorted(x)))
Traceback (most recent call last): File "/tmp/tmp77peq6of/tmp221h9nn3.py", line 1, in <module> x = [int(x) for x in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s628241543
p02393
u747998458
1556633472
Python
Python3
py
Runtime Error
0
0
307
numbers = list(map(int, input().split())) for i in range(len(numbers)-1): for j in range(len(numbers)-1-i): if(numbers[j] > numbers[j+i]): temp = numbers[j] numbers[j] = numbers[j+1] numbers[j+1] = temp print(f'numbers[0] numbers[1] numbers[2])
File "/tmp/tmpqb8518gf/tmp5piuekdq.py", line 10 print(f'numbers[0] numbers[1] numbers[2]) ^ SyntaxError: unterminated string literal (detected at line 10)
s219502235
p02393
u725843728
1556684727
Python
Python3
py
Runtime Error
0
0
61
a,b,c = map(int,input().split()) x = a,b,c x.sort() print(x)
Traceback (most recent call last): File "/tmp/tmph2yyvj9v/tmp3dpch_y4.py", line 1, in <module> a,b,c = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s138925785
p02393
u897466764
1558933703
Python
Python3
py
Runtime Error
0
0
84
#入力 n = int(input()) a = list(map(int,input().split())) a.reverse() print(*a)
Traceback (most recent call last): File "/tmp/tmpyot7ednm/tmppbdi2_no.py", line 2, in <module> n = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s987109054
p02393
u517275798
1558933726
Python
Python3
py
Runtime Error
0
0
153
#a, b, c = map(int, input(). split()) na = list(map(int, input(). split())) #print(dir(ns)) ns. sort() #print(ns[0], ns[1], ns[2]) print(ns) print(*ns)
Traceback (most recent call last): File "/tmp/tmpndnkrer2/tmpg4fyw9wa.py", line 2, in <module> na = list(map(int, input(). split())) ^^^^^^^ EOFError: EOF when reading a line
s721403505
p02393
u477464845
1559052213
Python
Python3
py
Runtime Error
0
0
53
a = list(map(int, input().split()) a.sort print(*a)
File "/tmp/tmpn0hsd2v_/tmp1mr2al1c.py", line 1 a = list(map(int, input().split()) ^ SyntaxError: '(' was never closed
s499919042
p02393
u535719732
1559187398
Python
Python3
py
Runtime Error
0
0
206
num = list(map(int,input().split())) list = [] for i in num: if(i == 0): list.append(num[i]) else: if(list[i-1] > num[i]): list.append = list[i] list[i-1] = num[i]
Traceback (most recent call last): File "/tmp/tmp_jfikbqx/tmpbg9p1_l3.py", line 1, in <module> num = list(map(int,input().split())) ^^^^^^^ EOFError: EOF when reading a line
s551485641
p02393
u337885935
1559539622
Python
Python3
py
Runtime Error
0
0
101
a,b,c = map(int,input(),split()) if a>b: a,b=b,a if b>c: c,b=b,c if a>b: a,b=b,a print(a,b,c)
Traceback (most recent call last): File "/tmp/tmpt82do8mm/tmp1ieysw5t.py", line 1, in <module> a,b,c = map(int,input(),split()) ^^^^^^^ EOFError: EOF when reading a line
s865340268
p02393
u907094926
1405753807
Python
Python
py
Runtime Error
0
0
104
[a,b,c] = raw_input().split(' ') a = int(a) b = int(b) c = int(c) t = sort([a,b,c]) print t[0],t[1],t[2]
File "/tmp/tmp3zpss98g/tmp84_edm3w.py", line 6 print t[0],t[1],t[2] ^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s879783429
p02393
u327972099
1409570830
Python
Python3
py
Runtime Error
0
0
217
for i, a in enumerate(list(map(lambda a : int(a), input().split(" ")))[::-1]):     if i == 0:         print("%d" % a, end ="")     else:         print(" %d"% a, end ="")
File "/tmp/tmphyg6jc1w/tmpxgsmwqw7.py", line 2     if i == 0: ^ SyntaxError: invalid non-printable character U+3000
s146838445
p02393
u607831289
1415985664
Python
Python
py
Runtime Error
0
0
81
num_list = map(int, raw_input().split()) print ' '.join(map(str, sorted(numlist))
File "/tmp/tmpqh0l53qj/tmpfqtg9buy.py", line 2 print ' '.join(map(str, sorted(numlist)) ^ SyntaxError: '(' was never closed
s468758613
p02393
u017764209
1416489562
Python
Python
py
Runtime Error
0
0
260
seq = map(int,raw_input().split()) print "バブルソート実行" for i in range(len(seq)): for j in range(i,len(seq)-1): if seq[i] > seq[j+1]: a = seq[j+1] seq[j+1] = seq[i] seq[i] = a print i,j+1,seq
File "/tmp/tmpqm615w4v/tmp_pgyj06b.py", line 3 print "バブルソート実行" ^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s661402861
p02393
u481221703
1418863907
Python
Python
py
Runtime Error
0
0
59
lists = list(int, raw_input().split()) print sorted(lists)
File "/tmp/tmp1d79f7md/tmpxdt1bat2.py", line 2 print sorted(lists) ^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s581628890
p02393
u481221703
1418864706
Python
Python
py
Runtime Error
0
0
125
a,b,c = map(int, raw_input().split()) lists = [a,b,c] new_list = sorted(lists) print new_lists[0], new_lists[1], new_lists[2]
File "/tmp/tmpyb9cyjzn/tmpo8hnpest.py", line 4 print new_lists[0], new_lists[1], new_lists[2] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s818872093
p02393
u442346200
1422240015
Python
Python3
py
Runtime Error
0
0
76
x = input().split(' ') x = list(map(int, x)).sort() print(x[0], x[1], x[2])
Traceback (most recent call last): File "/tmp/tmptx81bf6h/tmpowb1ojkj.py", line 1, in <module> x = input().split(' ') ^^^^^^^ EOFError: EOF when reading a line
s745882918
p02393
u527848444
1422241314
Python
Python3
py
Runtime Error
0
0
193
i = input().split(' ') W = int(i[0]) H = int(i[1]) x = int(i[2]) y = int(i[3]) r = int(i[4]) if x - r >= 0 and y - r >= 0 and x + r <= W and y + r <= H: print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmp697vchex/tmpvcglylxi.py", line 1, in <module> i = input().split(' ') ^^^^^^^ EOFError: EOF when reading a line
s828805498
p02393
u527848444
1422241379
Python
Python3
py
Runtime Error
0
0
193
i = input().split(' ') W = int(i[0]) H = int(i[1]) x = int(i[2]) y = int(i[3]) r = int(i[4]) if x - r >= 0 and y - r >= 0 and x + r <= W and y + r <= H: print('Yes') else: print('No')
Traceback (most recent call last): File "/tmp/tmpjxn8xt5j/tmpl5ypwrv2.py", line 1, in <module> i = input().split(' ') ^^^^^^^ EOFError: EOF when reading a line
s985060311
p02393
u823030818
1422327672
Python
Python3
py
Runtime Error
0
0
275
(a, b, c) = input().rstrip.split(' ') a = int(a) b = int(b) c = int(c) if a < b < c: print(a, b, c) elif a < c < b: print(a, c, b) elif b <= a <= c: print(b, a, c) elif b <= c <= a: print(b, c, a) elif c <= a <= b: print(c, a, b) else: print(c, b, a)
Traceback (most recent call last): File "/tmp/tmpzy1m3gmw/tmpokllbpnm.py", line 1, in <module> (a, b, c) = input().rstrip.split(' ') ^^^^^^^ EOFError: EOF when reading a line
s295016177
p02393
u823030818
1422327742
Python
Python3
py
Runtime Error
0
0
275
(a, b, c) = input().rstrip.split(' ') a = int(a) b = int(b) c = int(c) if a < b < c: print(a, b, c) elif a < c < b: print(a, c, b) elif b <= a <= c: print(b, a, c) elif b <= c <= a: print(b, c, a) elif c <= a <= b: print(c, a, b) else: print(c, b, a)
Traceback (most recent call last): File "/tmp/tmpyibazkgc/tmp4g81ezhn.py", line 1, in <module> (a, b, c) = input().rstrip.split(' ') ^^^^^^^ EOFError: EOF when reading a line
s986447592
p02393
u823030818
1422327782
Python
Python3
py
Runtime Error
0
0
287
(a, b, c) = input().rstrip.split(' ') a = int(a) b = int(b) c = int(c) if a < b < c: print('a, b, c') elif a < c < b: print('a, c, b') elif b <= a <= c: print('b, a, c') elif b <= c <= a: print('b, c, a') elif c <= a <= b: print('c, a, b') else: print('c, b, a')
Traceback (most recent call last): File "/tmp/tmp_vrucfee/tmpeterwddz.py", line 1, in <module> (a, b, c) = input().rstrip.split(' ') ^^^^^^^ EOFError: EOF when reading a line
s725308591
p02393
u777299405
1423116512
Python
Python3
py
Runtime Error
0
0
35
print(*sorted(map(int, i.split())))
Traceback (most recent call last): File "/tmp/tmpgjry4_bp/tmp6azqq6cm.py", line 1, in <module> print(*sorted(map(int, i.split()))) ^ NameError: name 'i' is not defined. Did you mean: 'id'?
s265303423
p02393
u492556875
1424448090
Python
Python3
py
Runtime Error
0
0
89
import sys l = [int(i) for i in sys.stdin.readline().split()] l.sort() print(" ".join(l))
s842919342
p02393
u088816384
1424990793
Python
Python3
py
Runtime Error
0
0
120
a,b,c = map(int, raw_input().split()) value = [a,b,c] value.sort() value_str = map(str, value) print " ".join(value_str)
File "/tmp/tmpzajfhkoh/tmpj5dfgxg3.py", line 5 print " ".join(value_str) ^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s502272097
p02393
u166912986
1427269474
Python
Python
py
Runtime Error
0
0
305
n=map(int,raw_input().split()) if n[0]=<n[1]=<n[2]: a=n[0] b=n[1] c=n[2] elif n[0]=<n[2]=<n[1]: a=n[0] b=n[2] c=n[1] elif n[1]=<n[0]=<n[2]: a=n[1] b=n[0] c=n[2] elif n[1]=<n[2]=<n[0]: a=n[1] b=n[2] c=n[0] elif n[2]=<n[0]=<n[1]: a=n[2] b=n[0] c=n[1] else: a=n[2] b=n[1] c=n[0] print a,b,c
File "/tmp/tmpkxdl7mgm/tmp5wo4wgu8.py", line 2 if n[0]=<n[1]=<n[2]: ^ SyntaxError: invalid syntax
s642459067
p02393
u128811851
1428899387
Python
Python3
py
Runtime Error
0
0
413
a, b, c = map(int, input().split()) if a <= b: if b <= c: print("{0} {1} {2}".format(a, b, c)) else if c <= a: print("{0} {1} {2}".format(c, a, b)) else: print("{0} {1} {2}".format(a, c, b)) else: if a <= c: print("{0} {1} {2}".format(b, a, c)) else if c <= b: print("{0} {1} {2}".format(c, b, a)) else: print("{0} {1} {2}".format(b, c, a))
File "/tmp/tmpqb_nrntt/tmp81wur522.py", line 5 else if c <= a: ^^ SyntaxError: expected ':'
s157402063
p02393
u128811851
1428899451
Python
Python3
py
Runtime Error
0
0
413
a, b, c = map(int, input().split()) if a <= b: if b <= c: print("{0} {1} {2}".format(a, b, c)) else if c <= a: print("{0} {1} {2}".format(c, a, b)) else: print("{0} {1} {2}".format(a, c, b)) else: if a <= c: print("{0} {1} {2}".format(b, a, c)) else if c <= b: print("{0} {1} {2}".format(c, b, a)) else: print("{0} {1} {2}".format(b, c, a))
File "/tmp/tmp4qmsb3jl/tmp2u4lynu_.py", line 5 else if c <= a: ^^ SyntaxError: expected ':'
s183769921
p02393
u128811851
1428899490
Python
Python3
py
Runtime Error
0
0
413
a, b, c = map(int, input().split()) if a <= b: if b <= c: print("{0} {1} {2}".format(a, b, c)) else if c <= a: print("{0} {1} {2}".format(c, a, b)) else: print("{0} {1} {2}".format(a, c, b)) else: if a <= c: print("{0} {1} {2}".format(b, a, c)) else if c <= b: print("{0} {1} {2}".format(c, b, a)) else: print("{0} {1} {2}".format(b, c, a))
File "/tmp/tmpxdyfve7w/tmpdeecy6ff.py", line 5 else if c <= a: ^^ SyntaxError: expected ':'
s934190042
p02393
u128811851
1428899545
Python
Python3
py
Runtime Error
0
0
414
a, b, c = map(int, input().split()) if a <= b: if b <= c: print("{0} {1} {2}".format(a, b, c)) else if c <= a: print("{0} {1} {2}".format(c, a, b)) else: print("{0} {1} {2}".format(a, c, b)) else: if a <= c: print("{0} {1} {2}".format(b, a, c)) else if c <= b: print("{0} {1} {2}".format(c, b, a)) else: print("{0} {1} {2}".format(b, c, a))
File "/tmp/tmpz0y6zcii/tmp6j5887do.py", line 6 else if c <= a: ^^ SyntaxError: expected ':'
s335569295
p02393
u669360983
1430025470
Python
Python3
py
Runtime Error
0
0
150
a,b,c=map(int, input().split(" ")) if a>c : k=c c=a a=k if c<b : k=b b=c c=k if b<a k=b b=a a=k a,b,c=map(str,(a,b,c)) print(a+' '+b+' '+c)
File "/tmp/tmphm0uk_l7/tmpg5w3_yp7.py", line 11 if b<a ^ SyntaxError: expected ':'
s425806091
p02393
u436720733
1432109029
Python
Python3
py
Runtime Error
0
0
375
a, b, c = map(int, input().split()) if a <= b <= c: print("{} {} {}", format(a, b, c)) elif a <= c <= b: print("{} {} {}", format(a, c, b)) elif b <= a <= c: print("{} {} {}", format(b, a, c)) elif b <= c <= a: print("{} {} {}", format(b, c, a)) elif c <= a <= b: print("{} {} {}", format(c, a, b)) elif c <= b <= a: print("{} {} {}", format(c, b, a))
Traceback (most recent call last): File "/tmp/tmpnc9gwz0z/tmpqm6twn70.py", line 1, in <module> a, b, c = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s664296771
p02393
u172616925
1434949523
Python
Python
py
Runtime Error
0
0
291
a,b,c = map(int, raw_input().split()) if a < b: if c < a: print(%d,%d,%d) % c,a,b elif b < c: print(%d,%d,%d) % a,b,c else: print(%d,%d,%d) % a,c,b else: if c < b: print(%d,%d,%d) % c,b,a elif a < c: print(%d,%d,%d) % b,a,c else: print(%d,%d,%d) % b,c,a
File "/tmp/tmpy6ijwthl/tmpggaixn8f.py", line 5 print(%d,%d,%d) % c,a,b ^ SyntaxError: invalid syntax
s108563289
p02393
u442346200
1436150811
Python
Python3
py
Runtime Error
0
0
72
nums = int(input().split()) nums.sort() print(nums[0], nums[1], nums[2])
Traceback (most recent call last): File "/tmp/tmpf5ga9qvq/tmp2uk0iq54.py", line 1, in <module> nums = int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s563888121
p02393
u713218261
1436151053
Python
Python3
py
Runtime Error
0
0
89
nums = input().split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) sorted(a, b, c)
Traceback (most recent call last): File "/tmp/tmpqdyqqt37/tmpsn29sfsd.py", line 1, in <module> nums = input().split() ^^^^^^^ EOFError: EOF when reading a line
s493268240
p02393
u389610071
1436151216
Python
Python3
py
Runtime Error
0
0
95
nums = input().split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) print(sort(a, b, c))
Traceback (most recent call last): File "/tmp/tmptdbsdpby/tmpy77_b679.py", line 1, in <module> nums = input().split() ^^^^^^^ EOFError: EOF when reading a line
s710881085
p02393
u389610071
1436151315
Python
Python3
py
Runtime Error
0
0
101
nums = input().split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) S = sort(a, b, c) print(S)
Traceback (most recent call last): File "/tmp/tmpmyiyqg_r/tmppy2rndbu.py", line 1, in <module> nums = input().split() ^^^^^^^ EOFError: EOF when reading a line
s162243163
p02393
u978086225
1436152231
Python
Python3
py
Runtime Error
0
0
106
nums = input(),split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a < b < c: print(a, b, c)
Traceback (most recent call last): File "/tmp/tmp9ry_2fyy/tmpayxq5rqa.py", line 1, in <module> nums = input(),split() ^^^^^^^ EOFError: EOF when reading a line
s581303780
p02393
u978086225
1436152543
Python
Python3
py
Runtime Error
0
0
214
nums = input(),split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a < b < c: print(a, b, c) elif a =< b=< c: print(a, b, c) elif a > b > c: print(a, b, c) elif a >= b => c: print(a, b, c)
File "/tmp/tmpn5aqzq3a/tmp6qjhu8pk.py", line 7 elif a =< b=< c: ^ SyntaxError: invalid syntax
s690012947
p02393
u978086225
1436153161
Python
Python3
py
Runtime Error
0
0
281
nums = input(),split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a <= b <= c: print(a, b, c) elif a <= c <= b: print(a, c, b) elif b <= a <= c: print(b, a, c) elif b <= c <= a: print(b, c, a) elif c <= a <= b: print(c, a, b) else: print(c, b, a)
Traceback (most recent call last): File "/tmp/tmpwd4u5t08/tmpk4xhxrck.py", line 1, in <module> nums = input(),split() ^^^^^^^ EOFError: EOF when reading a line
s065315179
p02393
u605525736
1436155619
Python
Python3
py
Runtime Error
0
0
278
nums = input().split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a <= b <= c : print('a,b,c) elif a <= c <= b print('a,c,b) elif b <= a <= c: print('b,a,c') elif b <= c <= a: print('b,c,a) elif c <= a <= b: print('c,a,b') else: print('c,b,a)
File "/tmp/tmpzkwwr_6y/tmpsumlybv8.py", line 7 print('a,b,c) ^ SyntaxError: unterminated string literal (detected at line 7)
s319600332
p02393
u484576700
1436450216
Python
Python
py
Runtime Error
0
0
51
n = (int, raw_input().split()) n = n.sort() print n
File "/tmp/tmpajgs09yu/tmptrtzlxdv.py", line 3 print n ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s125699819
p02393
u484576700
1436450241
Python
Python
py
Runtime Error
0
0
51
n = (int, raw_input().split()) x = n.sort() print x
File "/tmp/tmpsmfvizzs/tmpt0pkfem3.py", line 3 print x ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s702342964
p02393
u484576700
1436450331
Python
Python
py
Runtime Error
0
0
49
n = (int, raw_input().split) x = n.sort() print x
File "/tmp/tmpv34a836n/tmp2o7agq9z.py", line 3 print x ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s496114411
p02393
u484576700
1436450394
Python
Python
py
Runtime Error
0
0
65
a,b,c = (int, raw_input().split) n = [a,b,c] x = n.sort() print n
File "/tmp/tmpw24f9532/tmp_qlal3sv.py", line 4 print n ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s627418667
p02393
u484576700
1436450410
Python
Python
py
Runtime Error
0
0
67
a,b,c = (int, raw_input().split()) n = [a,b,c] x = n.sort() print n
File "/tmp/tmpr7g437ao/tmppz6vx3ua.py", line 4 print n ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s370166099
p02393
u484576700
1436450467
Python
Python
py
Runtime Error
0
0
67
a,b,c = (int, raw_input().split()) n = [a,b,c] x = n.sort() print x
File "/tmp/tmpltf6tzfy/tmpz9phbum_.py", line 4 print x ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s320860204
p02393
u484576700
1436450563
Python
Python
py
Runtime Error
0
0
84
a,b,c = (int, raw_input().split()) n = [a,b,c] x = n.sort() for i in x: print i,
File "/tmp/tmpkg6g4i97/tmp2082cwwe.py", line 5 print i, ^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s884615789
p02393
u484576700
1436450776
Python
Python
py
Runtime Error
0
0
87
a,b,c = map(int, raw_input().split()) n = [a,b,c] x = n.sort() for i in x: print i,
File "/tmp/tmpep39ufpv/tmp1j8qiwa3.py", line 5 print i, ^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s903389270
p02393
u484576700
1436451172
Python
Python
py
Runtime Error
0
0
87
a,b,c = map(int, raw_input().split()) n = [a,b,c] x = n.sort() for i in x: print i,
File "/tmp/tmpv_c16_57/tmpjo552y_e.py", line 5 print i, ^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s903519571
p02393
u255164080
1437965378
Python
Python3
py
Runtime Error
0
0
153
nums = input().sprit() (W, H, x, y, r) = [int(i) for i in input().split()] if r <= x <= W - r and r <= y <= H - r: print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmpdy8fao1m/tmpfc92llr5.py", line 1, in <module> nums = input().sprit() ^^^^^^^ EOFError: EOF when reading a line
s765554909
p02393
u255164080
1437965798
Python
Python3
py
Runtime Error
0
0
154
import sys (W, H, x, y, r) = [int(i) for i in sys.stdin.readline().split()] if r <= x <= W - r and r <= y <= H - r: print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmpr8veencg/tmpa_v7ahyu.py", line 2, in <module> (W, H, x, y, r) = [int(i) for i in sys.stdin.readline().split()] ^^^^^^^^^^^^^^^ ValueError: not enough values to unpack (expected 5, got 0)
s033827372
p02393
u255164080
1437966156
Python
Python3
py
Runtime Error
0
0
85
nums = input().split() nums = [int(i) for i in input().split()] nums.sort print(nums)
Traceback (most recent call last): File "/tmp/tmp10zqzsfq/tmp9cxevmvt.py", line 1, in <module> nums = input().split() ^^^^^^^ EOFError: EOF when reading a line
s348677567
p02393
u255164080
1437967211
Python
Python3
py
Runtime Error
0
0
50
nums = int( input().split()) nums.sort print(nums)
Traceback (most recent call last): File "/tmp/tmpw8yz855r/tmp9w00ub3q.py", line 1, in <module> nums = int( input().split()) ^^^^^^^ EOFError: EOF when reading a line
s668112028
p02393
u255164080
1437967516
Python
Python3
py
Runtime Error
0
0
74
nums = [int(i) for i in input().split()] nums.sort print( %d %d %d % nums)
File "/tmp/tmptcp4bq93/tmpj6x7wz98.py", line 3 print( %d %d %d % nums) ^ SyntaxError: invalid syntax
s130935188
p02393
u255164080
1437968027
Python
Python3
py
Runtime Error
0
0
147
if a > b: tmp = a a = b b = tmp if b > c: tmp = b b = c c = tmp if a > b: tmp = a a = b b = tmp pritn(a, b, c)
Traceback (most recent call last): File "/tmp/tmp8ex5el_r/tmp8v1gsa1t.py", line 1, in <module> if a > b: ^ NameError: name 'a' is not defined
s686434192
p02393
u255164080
1437968117
Python
Python3
py
Runtime Error
0
0
222
nums = input().split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a > b: tmp = a a = b b = tmp if b > c: tmp = b b = c c = tmp if a > b: tmp = a a = b b = tmp pritn(a, b, c)
Traceback (most recent call last): File "/tmp/tmpmm1rb5qp/tmpv40jr8bf.py", line 1, in <module> nums = input().split() ^^^^^^^ EOFError: EOF when reading a line
s759536063
p02393
u152353734
1439750034
Python
Python3
py
Runtime Error
0
0
305
nums = input().split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a <= b <= c: ????????print(a, b, c) elif a <= c <= b: ????????print(a, c, b) elif b <= a <= c: ????????print(b, a, c) elif b <= c <= a: ????????print(b, c, a) elif c <= a <= b: ????????print(c, a, b) else: ????????print(c, b, a)
File "/tmp/tmpj267kq9y/tmpdktftu6t.py", line 6 ????????print(a, b, c) ^ IndentationError: expected an indented block after 'if' statement on line 5
s152619704
p02393
u676498528
1439832880
Python
Python3
py
Runtime Error
0
0
174
nums = input().split() a = int(num[0]) b = int(num[1]) c = int(num[2]) if a > b: tmp = a a = b b = tmp if b > c: tmp = b b = c c = tmp print(a, b, c)
Traceback (most recent call last): File "/tmp/tmpybf56dp3/tmptvkbxydu.py", line 1, in <module> nums = input().split() ^^^^^^^ EOFError: EOF when reading a line
s549592969
p02393
u676498528
1439832981
Python
Python3
py
Runtime Error
0
0
218
nums = input().split() a = int(num[0]) b = int(num[1]) c = int(num[2]) if a > b: tmp = a a = b b = tmp if b > c: tmp = b b = c c = tmp if a > b: tmp = a a = b b = tmp print(a, b, c)
Traceback (most recent call last): File "/tmp/tmpr8zt5b2k/tmpf7fjzek1.py", line 1, in <module> nums = input().split() ^^^^^^^ EOFError: EOF when reading a line
s594254994
p02393
u572760146
1442757989
Python
Python
py
Runtime Error
0
0
237
S = input() L = S.split() a = L[0] b = L[1] c = L[2] a = int(a) b = int(b) c = int(c) l = [a,b,c] min_1 = min(a,b,c) # print l.remove(min_1) l.remove(min_1) min_2 = min(l) l.remove(min_2) min_3 = l[0] print min_1 , min_2, min_3
File "/tmp/tmpqyqqxwza/tmpuhx55ya4.py", line 22 print min_1 , min_2, min_3 ^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s666489146
p02393
u572760146
1442758028
Python
Python
py
Runtime Error
0
0
237
S = input() L = S.split() a = L[0] b = L[1] c = L[2] a = int(a) b = int(b) c = int(c) l = [a,b,c] min_1 = min(a,b,c) # print l.remove(min_1) l.remove(min_1) min_2 = min(l) l.remove(min_2) min_3 = l[0] print min_1 , min_2, min_3
File "/tmp/tmp2fy1pyxp/tmpxj_e_0zx.py", line 22 print min_1 , min_2, min_3 ^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s591444029
p02393
u572760146
1442758601
Python
Python
py
Runtime Error
0
0
301
S = input() L = S.split() a = L[0] b = L[1] c = L[2] a = int(a) b = int(b) c = int(c) l = [a,b,c] min_1 = min(a,b,c) # print l.remove(min_1) l.remove(min_1) min_2 = min(l) l.remove(min_2) min_3 = l[0] min_1 = str(min_1) min_2 = str(min_2) min_3 = str(min_3) print min_1+' '+min_2+' '+min_3
File "/tmp/tmprlrr7kfw/tmpd606eqbw.py", line 27 print min_1+' '+min_2+' '+min_3 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s369853033
p02393
u572760146
1442759121
Python
Python
py
Runtime Error
0
0
301
S = input() L = S.split() a = L[0] b = L[1] c = L[2] a = int(a) b = int(b) c = int(c) l = [a,b,c] min_1 = min(a,b,c) # print l.remove(min_1) l.remove(min_1) min_2 = min(l) l.remove(min_2) min_3 = l[0] min_1 = str(min_1) min_2 = str(min_2) min_3 = str(min_3) print min_3+' '+min_2+' '+min_1
File "/tmp/tmp449tv2jb/tmpsb7incms.py", line 27 print min_3+' '+min_2+' '+min_1 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s676971038
p02393
u627893595
1443594091
Python
Python3
py
Runtime Error
0
0
77
num = list(map(int, input().split())) num.sort() print(num[0], num[1], num[2]
File "/tmp/tmpsh237gfy/tmpaph1i6pw.py", line 3 print(num[0], num[1], num[2] ^ SyntaxError: '(' was never closed
s454643077
p02393
u224288634
1444128512
Python
Python
py
Runtime Error
0
0
95
list = map(int,raw_input().split()) ilst.sort() print'%d %d %d' %(list[0],list[1],list[2])
File "/tmp/tmpsgo3cays/tmpx_67w87g.py", line 3 print'%d %d %d' %(list[0],list[1],list[2]) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s449749047
p02393
u224288634
1444128648
Python
Python
py
Runtime Error
0
0
96
list = map(int,raw_input().split()) ilst.sort() print'%d %d %d' % (list[0],list[1],list[2])
File "/tmp/tmpdek58x1h/tmpayzr1vq6.py", line 3 print'%d %d %d' % (list[0],list[1],list[2]) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s842242783
p02393
u224288634
1444128719
Python
Python
py
Runtime Error
0
0
77
list = map(int,raw_input().split()) ilst.sort() for i in list : print(i)
Traceback (most recent call last): File "/tmp/tmp5m48rzv9/tmprm56a5nv.py", line 1, in <module> list = map(int,raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s009736600
p02393
u224288634
1444128851
Python
Python
py
Runtime Error
0
0
91
a,b,c = map(int,raw_input().split()) list = [a,b,c] ilst.sort() for i in list : print i
File "/tmp/tmprfw54x_7/tmph8a37809.py", line 5 print i ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s531033312
p02393
u139034459
1445707039
Python
Python
py
Runtime Error
0
0
328
#!/usr/bin/env python # -*- coding: utf-8 -*- var = raw_input().split() var = map(int, var) if var[0] > var[1] tmp = var[0] var[0] = var[1] var[1] = tmp if var[0] > var[2] tmp = var[0] var[0] = var[2] var[2] = tmp if var[1] > var[2] tmp = var[1] var[1] = var[2] var[2] = tmp var = map(str, var) prini " ".join(var)
File "/tmp/tmptppma_kw/tmpqbstg7gm.py", line 8 if var[0] > var[1] ^ SyntaxError: expected ':'
s843127998
p02393
u139034459
1445707112
Python
Python
py
Runtime Error
0
0
335
#!/usr/bin/env python # -*- coding: utf-8 -*- var = raw_input().split() var = map(int, var) if var[0] > var[1] tmp = var[0] var[0] = var[1] var[1] = tmp if var[0] > var[2] tmp = var[0] var[0] = var[2] var[2] = tmp if var[1] > var[2] tmp = var[1] var[1] = var[2] var[2] = tmp var = map(str, var) prini var[0],var[1],var[2]
File "/tmp/tmpom99oru9/tmpwpusc_9c.py", line 8 if var[0] > var[1] ^ SyntaxError: expected ':'
s111363239
p02393
u139034459
1445707163
Python
Python
py
Runtime Error
0
0
338
#!/usr/bin/env python # -*- coding: utf-8 -*- var = raw_input().split() var = map(int, var) if var[0] > var[1]: tmp = var[0] var[0] = var[1] var[1] = tmp if var[0] > var[2]: tmp = var[0] var[0] = var[2] var[2] = tmp if var[1] > var[2]: tmp = var[1] var[1] = var[2] var[2] = tmp var = map(str, var) prini var[0],var[1],var[2]
File "/tmp/tmpfblee38g/tmp1y0paf7y.py", line 23 prini var[0],var[1],var[2] ^^^ SyntaxError: invalid syntax
s271586486
p02393
u139034459
1445707228
Python
Python
py
Runtime Error
0
0
321
#!/usr/bin/env python # -*- coding: utf-8 -*- var = raw_input().split() var = map(int, var) if var[0] > var[1]: tmp = var[0] var[0] = var[1] var[1] = tmp if var[0] > var[2]: tmp = var[0] var[0] = var[2] var[2] = tmp if var[1] > var[2]: tmp = var[1] var[1] = var[2] var[2] = tmp prini var[0],var[1],var[2]
File "/tmp/tmp90tvhwkv/tmp8dlmnw_3.py", line 23 prini var[0],var[1],var[2] ^^^ SyntaxError: invalid syntax
s350088113
p02393
u532962080
1452586581
Python
Python
py
Runtime Error
0
0
322
a,b,c=map(int,raw_input().split()) if a<=b and b<=c: print a + ' ' + b + ' ' + c if a<=c and c<=b: print a + ' ' + c + ' ' + b if b<=a and a<=c: print b + ' ' + a + ' ' + c if b<=c and c<=a: print b + ' ' + c + ' ' + a if c<=b and b<=a: print c + ' ' + b + ' ' + a if c<=a and a<=b: print c + ' ' + a + ' ' + b
File "/tmp/tmpwtu9ii29/tmp98zpqt19.py", line 3 print a + ' ' + b + ' ' + c ^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s152817591
p02393
u532962080
1452586650
Python
Python
py
Runtime Error
0
0
332
a,b,c=map(int,raw_input().split()) if a<=b and b<=c: print a + ' ' + b + ' ' + c elif a<=c and c<=b: print a + ' ' + c + ' ' + b elif b<=a and a<=c: print b + ' ' + a + ' ' + c elif b<=c and c<=a: print b + ' ' + c + ' ' + a elif c<=b and b<=a: print c + ' ' + b + ' ' + a elif c<=a and a<=b: print c + ' ' + a + ' ' + b
File "/tmp/tmpdbjiimnu/tmp94exmm41.py", line 3 print a + ' ' + b + ' ' + c ^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s536124071
p02393
u532962080
1452587191
Python
Python
py
Runtime Error
0
0
839
a,b,c=map(int,raw_input().split()b if a<b and b<c: print str(a) + ' ' + str(b) + ' ' + str(c) elif a<c and c<b: print str(a) + ' ' + str(c) + ' ' + str(b) elif b<a and a<c: print str(b) + ' ' + str(a) + ' ' + str(c) elif b<c and c<a: print str(b) + ' ' + str(c) + ' ' + str(a) elif c<b and b<a: print str(c) + ' ' + str(b) + ' ' + str(a) elif c<a and a<b: print str(c) + ' ' + str(a) + ' ' + str(b) elif a==b and a<c print str(a) + ' ' + str(b) + ' ' + str(c) elif a==b and a>c print str(c) + ' ' + str(a) + ' ' + str(b) elif a==c and a<b print str(a) + ' ' + str(c) + ' ' + str(c) elif a==c and a>b print str(b) + ' ' + str(a) + ' ' + str(c) elif b==c and a<c print str(a) + ' ' + str(b) + ' ' + str(c) elif b==c and a>c print str(b) + ' ' + str(c) + ' ' + str(a) else: print str(a) + ' ' + str(b) + ' ' + str(c)
File "/tmp/tmp1hvc0321/tmpxyrjgj57.py", line 1 a,b,c=map(int,raw_input().split()b ^ SyntaxError: '(' was never closed