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
s362082920
p02393
u532962080
1452588267
Python
Python
py
Runtime Error
0
0
163
a,b,c=map(int,raw_input().split()) if a>b: temp=a a=b b=a else: pass elif b>c: temp=b b=c c=b else: pass print str(a) + ' ' + str(b) + ' ' + str(c)
File "/tmp/tmp28jue62n/tmpt0cfoy4f.py", line 8 elif b>c: ^^^^ SyntaxError: invalid syntax
s490052930
p02393
u424209323
1452653489
Python
Python
py
Runtime Error
0
0
433
num = raw_input().split() a = num[0] b = num[1] c = num[2] if a < b: if b < c: print "%d %d %d" % a, b, c if c < b: if a < c: print "%d %d %d" % a, c, b if c < a: print "%d %d %d" % c, a, b if b < a: if a < c: print "%d %d %d" % b, a, c if c < a: if b < c: print "%d %d %d" % b, c, a if c < b: print "%d %d %d" % c, b, a
File "/tmp/tmpr5q4whi0/tmp3c7dshiq.py", line 8 print "%d %d %d" % a, b, c ^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s053767286
p02393
u424209323
1452653514
Python
Python
py
Runtime Error
0
0
445
num = raw_input().split() a = num[0] b = num[1] c = num[2] if a < b: if b < c: print "%d %d %d" % (a, b, c) if c < b: if a < c: print "%d %d %d" % (a, c, b) if c < a: print "%d %d %d" % (c, a, b) if b < a: if a < c: print "%d %d %d" % (b, a, c) if c < a: if b < c: print "%d %d %d" % (b, c, a) if c < b: print "%d %d %d" % (c, b, a)
File "/tmp/tmppl45mvdh/tmp8d4sm52i.py", line 8 print "%d %d %d" % (a, b, c) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s098256337
p02393
u424209323
1452653650
Python
Python
py
Runtime Error
0
0
445
num = raw_input().split() a = num[0] b = num[1] c = num[2] if a < b: if b < c: print "%d %d %d" % (a, b, c) if c < b: if a < c: print "%d %d %d" % (a, c, b) if c < a: print "%d %d %d" % (c, a, b) if b < a: if a < c: print "%d %d %d" % (b, a, c) if c < a: if b < c: print "%d %d %d" % (b, c, a) if c < b: print "%d %d %d" % (c, b, a)
File "/tmp/tmpqivvc3kw/tmpc46phvmn.py", line 8 print "%d %d %d" % (a, b, c) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s446106261
p02393
u424209323
1452653664
Python
Python
py
Runtime Error
0
0
445
num = raw_input().split() a = num[0] b = num[1] c = num[2] if a < b: if b < c: print "%d %d %d" % (a, b, c) if c < b: if a < c: print "%d %d %d" % (a, c, b) if c < a: print "%d %d %d" % (c, a, b) if b < a: if a < c: print "%d %d %d" % (b, a, c) if c < a: if b < c: print "%d %d %d" % (b, c, a) if c < b: print "%d %d %d" % (c, b, a)
File "/tmp/tmpcm0mb0o0/tmpn7z3weqw.py", line 8 print "%d %d %d" % (a, b, c) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s912859911
p02393
u613805578
1452699432
Python
Python
py
Runtime Error
0
0
88
a, b, c = map(int, raw_input().split()) num = [a, b, c] num.sort for i in num print i
File "/tmp/tmpjqmwq29j/tmpd5o9n5i1.py", line 4 for i in num ^ SyntaxError: expected ':'
s268070072
p02393
u613805578
1452699517
Python
Python
py
Runtime Error
0
0
89
a, b, c = map(int, raw_input().split()) num = [a, b, c] num.sort for i in num print i,
File "/tmp/tmpfbzvw1sm/tmpg9tmb9t_.py", line 4 for i in num ^ SyntaxError: expected ':'
s581767121
p02393
u613805578
1452699554
Python
Python
py
Runtime Error
0
0
91
a, b, c = map(int, raw_input().split()) num = [a, b, c] num.sort() for i in num print i,
File "/tmp/tmp3glwshq5/tmp3w_g2w6f.py", line 4 for i in num ^ SyntaxError: expected ':'
s384034539
p02393
u613805578
1452699559
Python
Python
py
Runtime Error
0
0
90
a, b, c = map(int, raw_input().split()) num = [a, b, c] num.sort() for i in num print i
File "/tmp/tmpgp94_r1s/tmpdt9iw46w.py", line 4 for i in num ^ SyntaxError: expected ':'
s091107077
p02393
u731710433
1452824583
Python
Python3
py
Runtime Error
0
0
61
um = input().split() num.sort() print(num[0], num[1], num[2])
Traceback (most recent call last): File "/tmp/tmp10xcuter/tmpf8lvf8nf.py", line 1, in <module> um = input().split() ^^^^^^^ EOFError: EOF when reading a line
s427054306
p02393
u834416077
1452828523
Python
Python
py
Runtime Error
0
0
62
a = map(int,raw_input().split()) a.sort() print a[0] a[1] a[3]
File "/tmp/tmpvb3qy2v8/tmpcay7r3rn.py", line 3 print a[0] a[1] a[3] ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s852057745
p02393
u834416077
1452828662
Python
Python
py
Runtime Error
0
0
64
a = map(int,raw_input().split()) a.sort() print a[0], a[1], a[3]
File "/tmp/tmp4pq0g3y8/tmpazxn8tfm.py", line 3 print a[0], a[1], a[3] ^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s139797206
p02393
u038005340
1453172344
Python
Python
py
Runtime Error
0
0
355
N = map( int , raw_input().split() ) if N[0] < N[1] < N[2]: print 'N[0] N[1] N[2]' elif N[0] < N[2] < N[1]: print 'N[0] < N[2] < N[1]' elif N[1] < N[0] < N[2]: print 'N[1] < N[0] < N[2]' elif N[1] < N[2] < N[0]: print 'N[1] < N[2] < N[0]' elif N[2] < N[0] < N[1]: print 'N[2] < N[0] < N[1]' else N[2] < N[1] < N[0]: print 'N[2] < N[1] < N[0]'
File "/tmp/tmpnndpy4dx/tmp6qktf1lk.py", line 4 print 'N[0] N[1] N[2]' ^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s733272655
p02393
u038005340
1453172510
Python
Python
py
Runtime Error
0
0
231
a,b,c = map( int , raw_input().split() ) 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 c < b < a: print 'c b a'
File "/tmp/tmpa7gglc5c/tmp8sh_chax.py", line 4 print 'a b c' ^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s519152279
p02393
u038005340
1453172673
Python
Python
py
Runtime Error
0
0
303
a,b,c = map( int , raw_input().split() ) if a < b < c: print "%s %s %s" %(a,b,c) elif a < c < b: print "%s %s %s" %(a,c,b) elif b < a < c: print "%s %s %s" %(b,a,c) elif b < c < a: print "%s %s %s" %(b,c,a) elif c < a < b: print "%s %s %s" %(c,a,b) else c < b < a: print "%s %s %s" %(c,b,a)
File "/tmp/tmpror3pybt/tmp__z6d86n.py", line 4 print "%s %s %s" %(a,b,c) ^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s406570736
p02393
u038005340
1453172681
Python
Python
py
Runtime Error
0
0
303
a,b,c = map( int , raw_input().split() ) if a < b < c: print "%s %s %s" %(a,b,c) elif a < c < b: print "%s %s %s" %(a,c,b) elif b < a < c: print "%s %s %s" %(b,a,c) elif b < c < a: print "%s %s %s" %(b,c,a) elif c < a < b: print "%s %s %s" %(c,a,b) else c < b < a: print "%s %s %s" %(c,b,a)
File "/tmp/tmpetb2i92g/tmpz7ik6ywi.py", line 4 print "%s %s %s" %(a,b,c) ^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s001792387
p02393
u038005340
1453172897
Python
Python
py
Runtime Error
0
0
303
a,b,c = map( int , raw_input().split() ) if a < b < c: print "%d %d %d" %(a,b,c) elif a < c < b: print "%d %d %d" %(a,c,b) elif b < a < c: print "%d %d %d" %(b,a,c) elif b < c < a: print "%d %d %d" %(b,c,a) elif c < a < b: print "%d %d %d" %(c,a,b) else c < b < a: print "%d %d %d" %(c,b,a)
File "/tmp/tmpeoa07o6a/tmp0wbas_an.py", line 4 print "%d %d %d" %(a,b,c) ^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s626949444
p02393
u038005340
1453173136
Python
Python
py
Runtime Error
0
0
328
N = map( int , raw_input().split() ) a = N[0] b = N[1] c = N[2] if a < b < c: print "%d %d %d" %(a,b,c) elif a < c < b: print "%d %d %d" %(a,c,b) elif b < a < c: print "%d %d %d" %(b,a,c) elif b < c < a: print "%d %d %d" %(b,c,a) elif c < a < b: print "%d %d %d" %(c,a,b) else c < b < a: print "%d %d %d" %(c,b,a)
File "/tmp/tmp18qy41u8/tmpazbjafsc.py", line 8 print "%d %d %d" %(a,b,c) ^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s946253111
p02393
u038005340
1453173159
Python
Python
py
Runtime Error
0
0
328
N = map( int , raw_input().split() ) a = N[0] b = N[1] c = N[2] if a < b < c: print "%d %d %d" %(a,b,c) elif a < c < b: print "%d %d %d" %(a,c,b) elif b < a < c: print "%d %d %d" %(b,a,c) elif b < c < a: print "%d %d %d" %(b,c,a) elif c < a < b: print "%d %d %d" %(c,a,b) else c < b < a: print "%d %d %d" %(c,b,a)
File "/tmp/tmpt5zof0x2/tmpotr9wiip.py", line 8 print "%d %d %d" %(a,b,c) ^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s403407329
p02393
u038005340
1453173348
Python
Python
py
Runtime Error
0
0
328
N = map( int , raw_input().split() ) a = N[0] b = N[1] c = N[2] if a < b < c: print "%d %d %d" %(a,b,c) elif a < c < b: print "%d %d %d" %(a,c,b) elif b < a < c: print "%d %d %d" %(b,a,c) elif b < c < a: print "%d %d %d" %(b,c,a) elif c < a < b: print "%d %d %d" %(c,a,b) else c < b < a: print "%d %d %d" %(c,b,a)
File "/tmp/tmp8r2g6upz/tmpgb6aonhd.py", line 8 print "%d %d %d" %(a,b,c) ^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s155625067
p02393
u038005340
1453173550
Python
Python
py
Runtime Error
0
0
408
N = map( int , raw_input().split() ) if N[0] < N[1] < N[2]: print "%d %d %d" %(N[0],N[1],N[2]) elif N[0] < N[2] < N[1]: print "%d %d %d" %(N[0],N[1],N[2]) elif N[1] < N[0] < N[2]: print "%d %d %d" %(N[1],N[0],N[2]) elif N[1] < N[2] < N[0]: print "%d %d %d" %(N[1],N[2],N[0]) elif N[2] < N[0] < N[1]: print "%d %d %d" %(N[2],N[0],N[1]) else N[2] < N[1] < N[0]: print "%d %d %d" %(N[2],N[1],N[0])
File "/tmp/tmp2bn4jpsc/tmp2cxo1wyi.py", line 4 print "%d %d %d" %(N[0],N[1],N[2]) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s024703866
p02393
u038005340
1453173568
Python
Python
py
Runtime Error
0
0
408
N = map( int , raw_input().split() ) if N[0] < N[1] < N[2]: print "%d %d %d" %(N[0],N[1],N[2]) elif N[0] < N[2] < N[1]: print "%d %d %d" %(N[0],N[1],N[2]) elif N[1] < N[0] < N[2]: print "%d %d %d" %(N[1],N[0],N[2]) elif N[1] < N[2] < N[0]: print "%d %d %d" %(N[1],N[2],N[0]) elif N[2] < N[0] < N[1]: print "%d %d %d" %(N[2],N[0],N[1]) else N[2] < N[1] < N[0]: print "%d %d %d" %(N[2],N[1],N[0])
File "/tmp/tmpjo7rl6q2/tmpoh80yzo8.py", line 4 print "%d %d %d" %(N[0],N[1],N[2]) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s201118050
p02393
u038005340
1453173690
Python
Python
py
Runtime Error
0
0
408
N = map( int , raw_input().split() ) if N[0] < N[1] < N[2]: print "%d %d %d" %(N[0],N[1],N[2]) elif N[0] < N[2] < N[1]: print "%d %d %d" %(N[0],N[1],N[2]) elif N[1] < N[0] < N[2]: print "%d %d %d" %(N[1],N[0],N[2]) elif N[1] < N[2] < N[0]: print "%d %d %d" %(N[1],N[2],N[0]) elif N[2] < N[0] < N[1]: print "%d %d %d" %(N[2],N[0],N[1]) else N[2] < N[1] < N[0]: print "%d %d %d" %(N[2],N[1],N[0])
File "/tmp/tmpxmkgn8nz/tmplluscd5e.py", line 4 print "%d %d %d" %(N[0],N[1],N[2]) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s414564574
p02393
u038005340
1453173745
Python
Python
py
Runtime Error
0
0
408
N = map( int , raw_input().split() ) if N[0] < N[1] < N[2]: print "%d %d %d" %(N[0],N[1],N[2]) elif N[0] < N[2] < N[1]: print "%d %d %d" %(N[0],N[1],N[2]) elif N[1] < N[0] < N[2]: print "%d %d %d" %(N[1],N[0],N[2]) elif N[1] < N[2] < N[0]: print "%d %d %d" %(N[1],N[2],N[0]) elif N[2] < N[0] < N[1]: print "%d %d %d" %(N[2],N[0],N[1]) else N[2] < N[1] < N[0]: print "%d %d %d" %(N[2],N[1],N[0])
File "/tmp/tmprjqgh46c/tmp33qvb310.py", line 4 print "%d %d %d" %(N[0],N[1],N[2]) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s867140248
p02393
u619765879
1453187965
Python
Python
py
Runtime Error
0
0
83
a = map(int, raw_input().split()) a.sort() print '%d %d %d' % (a[1], a[2], a[3])
File "/tmp/tmp9ylzfn5q/tmp4jjui85q.py", line 4 print '%d %d %d' % (a[1], a[2], a[3]) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s043195168
p02393
u619765879
1453187977
Python
Python
py
Runtime Error
0
0
85
a = map(int, raw_input().split()) a.sort() print '%d, %d, %d' % (a[1], a[2], a[3])
File "/tmp/tmpyn3lzfnm/tmpmr0sg0k1.py", line 4 print '%d, %d, %d' % (a[1], a[2], a[3]) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s264180605
p02393
u619765879
1453188003
Python
Python
py
Runtime Error
0
0
86
a = map(int, raw_input().split()) #a.sort() print '%d, %d, %d' % (a[1], a[2], a[3])
File "/tmp/tmp_68gpcfo/tmpkgil59gw.py", line 4 print '%d, %d, %d' % (a[1], a[2], a[3]) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s693042168
p02393
u619765879
1453188084
Python
Python
py
Runtime Error
0
0
84
a = map(int, raw_input().split()) #a.sort() print '%d %d %d' % (a[1], a[2], a[3])
File "/tmp/tmp65dlknke/tmpycds3ldw.py", line 4 print '%d %d %d' % (a[1], a[2], a[3]) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s367040515
p02393
u619765879
1453188619
Python
Python
py
Runtime Error
0
0
106
a = map(int, raw_input().split()) a.sort() for i in range(len(a)): print '%d ' % (a[i]), print '?\n'
File "/tmp/tmphn3dzegr/tmpoxa1ic04.py", line 5 print '%d ' % (a[i]), ^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s116882796
p02393
u630265299
1453192674
Python
Python
py
Runtime Error
0
0
185
def c(int x, int y) temp = y y = x x = temp for i in range(3): n[i] = input() for j in range(3): if n[i] > n[j]: c(i, j) print "%d %d %d" % (n[1], n[2], n[3])
File "/tmp/tmp4kktngco/tmp0327ua8g.py", line 1 def c(int x, int y) ^ SyntaxError: invalid syntax
s516044845
p02393
u630265299
1453192839
Python
Python
py
Runtime Error
0
0
215
n[1] = input() n[2] = input() n[3] = input() def c(int x, int y) temp = y y = x x = temp for i in range(3): for j in range(3): if n[i] > n[j]: c(i, j) print "%d %d %d" % (n[1], n[2], n[3])
File "/tmp/tmpv6qlk_26/tmp9ijt467s.py", line 5 def c(int x, int y) ^ SyntaxError: invalid syntax
s679948032
p02393
u630265299
1453192962
Python
Python
py
Runtime Error
0
0
113
a, b, c=map(int, raw_input().split()) max_min=sorted(a, b, c) for i in range(len(max_min)): print max_min[i],
File "/tmp/tmpx7ykwdr4/tmpxsemo598.py", line 4 print max_min[i], ^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s129342531
p02393
u532962080
1453205055
Python
Python
py
Runtime Error
0
0
78
a=map(int, raw_input().split()) a=sorted(a) for i in range(2): print L[i]
File "/tmp/tmpqgiu8vrm/tmp9xp4wd8c.py", line 4 print L[i] ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s371575970
p02393
u532962080
1453205071
Python
Python
py
Runtime Error
0
0
83
a=map(int, raw_input().split()) a=sorted(a) for i in range(2): print L[i] + " "
File "/tmp/tmpm1charat/tmpr18evw8h.py", line 4 print L[i] + " " ^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s584494955
p02393
u532962080
1453205084
Python
Python
py
Runtime Error
0
0
82
a=map(int, raw_input().split()) a=sorted(a) for i in range 2: print L[i] + " "
File "/tmp/tmp0jjk9m0a/tmpx6ev873x.py", line 3 for i in range 2: ^ SyntaxError: invalid syntax
s244411429
p02393
u532962080
1453205097
Python
Python
py
Runtime Error
0
0
82
a=map(int, raw_input().split()) a=sorted(a) for i in range 2: print a[i] + " "
File "/tmp/tmp55epmi9s/tmpz__4fz3z.py", line 3 for i in range 2: ^ SyntaxError: invalid syntax
s447947160
p02393
u532962080
1453205112
Python
Python
py
Runtime Error
0
0
77
a=map(int, raw_input().split()) a=sorted(a) for i in range 2: print a[i]
File "/tmp/tmppssa57u1/tmpbec38z4w.py", line 3 for i in range 2: ^ SyntaxError: invalid syntax
s557222502
p02393
u532962080
1453205220
Python
Python
py
Runtime Error
0
0
89
a=map(int, raw_input().split()) a=sorted(a) for i in range (len(a)): print a[i] + " "
File "/tmp/tmpqgawqrig/tmpd7hsrca5.py", line 4 print a[i] + " " ^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s616926781
p02393
u532962080
1453205344
Python
Python
py
Runtime Error
0
0
87
a=map(int, raw_input().split()) a=sorted(a) for i in range(len(a)): ????????print a[i],
File "/tmp/tmp1wm6vnwk/tmpe0k85lbl.py", line 4 ????????print a[i], ^ IndentationError: expected an indented block after 'for' statement on line 3
s361492393
p02393
u532962080
1453205465
Python
Python
py
Runtime Error
0
0
89
a=map(int, raw_input().split()) a=sorted(a) for i in range(len(a)-1): ????????print a[i]
File "/tmp/tmplo4u80xk/tmpibpsr857.py", line 4 ????????print a[i] ^ IndentationError: expected an indented block after 'for' statement on line 3
s301384497
p02393
u047737909
1453210449
Python
Python
py
Runtime Error
0
0
229
a, b ,c = map(int, raw_input().split()) 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 elif (c < b < a): print c b a
File "/tmp/tmpqvwhy2wl/tmpval27pzw.py", line 4 print a b c ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s314195982
p02393
u119456964
1453254385
Python
Python
py
Runtime Error
0
0
161
a, b, c = map(raw_input().split()) temp = 0 if b < c: temp = b b = c c = temp if a < b: temp = a a = b b = temp print '{0} {1} {2}'.format(a, b, c)
File "/tmp/tmplx9rjbab/tmpjb89_vyb.py", line 13 print '{0} {1} {2}'.format(a, b, c) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s489543461
p02393
u682357930
1453255248
Python
Python3
py
Runtime Error
0
0
149
a,b,c = map(int, raw_input().split()) def check(i,j): if i > j: temp = i i = j j = temp check(a,b) check(b,c) check(a,b) print a,b,c
File "/tmp/tmpt3gwm_7w/tmp_vw_kwpu.py", line 13 print a,b,c ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s113042494
p02393
u529340193
1454992838
Python
Python
py
Runtime Error
0
0
73
a = [raw_input().split(" ")] a.sort() print "%s %s %s" % (a[0],a[1],a[2])
File "/tmp/tmppt756map/tmpsa5dpuc3.py", line 3 print "%s %s %s" % (a[0],a[1],a[2]) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s716163511
p02393
u075836834
1457267488
Python
Python3
py
Runtime Error
0
0
58
x=map(int, input().split()) x.sort() print(x[0],x[1],x[2])
Traceback (most recent call last): File "/tmp/tmptfw6sfqr/tmpoh2mpbbb.py", line 1, in <module> x=map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s368081401
p02393
u869301406
1458623872
Python
Python
py
Runtime Error
0
0
80
a=list(raw_input().split(" "))) b=map(int,a) b.sort() print " ".join(map(str,b))
File "/tmp/tmp889j20dx/tmp3mnth4nn.py", line 1 a=list(raw_input().split(" "))) ^ SyntaxError: unmatched ')'
s345893116
p02393
u869301406
1458623899
Python
Python
py
Runtime Error
0
0
80
a=list(raw_input().split(" "))) b=map(int,a) b.sort() print " ".join(map(str,b))
File "/tmp/tmp6wvh0w3h/tmpdw12hq5x.py", line 1 a=list(raw_input().split(" "))) ^ SyntaxError: unmatched ')'
s751744455
p02393
u402330988
1459730306
Python
Python3
py
Runtime Error
0
0
150
# encoding:utf-8 input = list(map(int, input().split(" "))) input.sort() print (str(input_str[0]) + " " + str(input_str[1]) + " " + str(input_str[2]))
Traceback (most recent call last): File "/tmp/tmp1jxba3lg/tmp29f8aibm.py", line 2, in <module> input = list(map(int, input().split(" "))) ^^^^^^^ EOFError: EOF when reading a line
s668332889
p02393
u894381890
1460351485
Python
Python
py
Runtime Error
0
0
504
import sys x = sys.stdin.readline() x_list = x.split(" ") max = int(x_list[0]) maxNo = 0 min = int(x_list[0]) minNo = 0 for i in range(1,3): if max < int(x_list[i]): max = int(x_list[i]) maxNo = i elif min > int(x_list[i]): min = int(x_list[i]) minNo = i if (max == 0 and min == 1) or (max == 1 and min == 0): mid == int(x_list[2]) elif (max == 0 and min == 2) or (max == 2 and min == 0): mid == int(x_list[1]) else: mid == int(x_list[0]) print "%s %s %s" %(max, mid, min)
File "/tmp/tmpkkf2fch7/tmp3er6_hyt.py", line 27 print "%s %s %s" %(max, mid, min) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s085609480
p02393
u894381890
1460351531
Python
Python
py
Runtime Error
0
0
519
import sys x = sys.stdin.readline() x_list = x.split(" ") max = int(x_list[0]) maxNo = 0 min = int(x_list[0]) minNo = 0 for i in range(1,3): if max < int(x_list[i]): max = int(x_list[i]) maxNo = i elif min > int(x_list[i]): min = int(x_list[i]) minNo = i if (maxNo == 0 and minNo == 1) or (maxNo == 1 and minNo == 0): mid == int(x_list[2]) elif (maxNo == 0 and minNo == 2) or (maxNo == 2 and minNo == 0): mid == int(x_list[1]) else: mid == int(x_list[0]) print "%s %s %s" %(max, mid, min)
File "/tmp/tmp1e6y1wv2/tmpqbwulosp.py", line 26 print "%s %s %s" %(max, mid, min) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s127232508
p02393
u894381890
1460351993
Python
Python
py
Runtime Error
0
0
274
import sys x = sys.stdin.readline() a1,b1,c1 = x.split(" ") a = int(a1) b = int(b1) c = int(c1) max = a mid = a min = a if max < b: max = b elif min > b: min = b if max < c: mid = max max = c elif min > c: mid = min min = c print("%d %d %d"), %(max,mid,min)
File "/tmp/tmpx2q04jdv/tmpf9zk7v8e.py", line 25 print("%d %d %d"), %(max,mid,min) ^ SyntaxError: invalid syntax
s591704233
p02393
u077284614
1461236105
Python
Python3
py
Runtime Error
0
0
40
a[i]=map(int,input().split()) a.sort() a
Traceback (most recent call last): File "/tmp/tmpr22tjr2y/tmp5y75b27s.py", line 1, in <module> a[i]=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s126180791
p02393
u077284614
1461236361
Python
Python3
py
Runtime Error
0
0
60
num = list(map(int,input().split())) num.sort() print(num[])
File "/tmp/tmpuxbmfobd/tmp5i4ihyf8.py", line 3 print(num[]) ^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s250903176
p02393
u617990214
1461758808
Python
Python
py
Runtime Error
0
0
168
# GNU nano 2.2.6 ????????????: 2_c.py n=raw_input() k=n.split(n) k.sort() #k=[3,2,1] print k[0], print k[1], print k[2]
File "/tmp/tmpflkqvlc0/tmpyyiv005_.py", line 7 print k[0], ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s699169713
p02393
u617990214
1461758822
Python
Python
py
Runtime Error
0
0
82
n=raw_input() k=n.split(n) k.sort() #k=[3,2,1] print k[0], print k[1], print k[2]
File "/tmp/tmpppa788jv/tmpnsxe_7rf.py", line 6 print k[0], ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s813525331
p02393
u617990214
1461758864
Python
Python
py
Runtime Error
0
0
70
n=raw_input() k=n.split(n) k.sort() print k[0], print k[1], print k[2]
File "/tmp/tmpalalwpch/tmp7wtcyv6e.py", line 4 print k[0], ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s152878173
p02393
u105949207
1462525845
Python
Python
py
Runtime Error
0
0
110
l = [int(x) for x in input().rstrip().split(" ")] result = [str(x) for x in sorted(l)] print(" ".join(result))
Traceback (most recent call last): File "/tmp/tmp37yzf7m8/tmp4gco5wt3.py", line 1, in <module> l = [int(x) for x in input().rstrip().split(" ")] ^^^^^^^ EOFError: EOF when reading a line
s142435390
p02393
u105949207
1462525893
Python
Python3
py
Runtime Error
0
0
332
a, b, c = [int(x) for x in raw_input().split(" ")] list =[a,b,c] list_2 = [] for x in range(len(list)): mini = min(list) list_2.append(mini) list.remove(mini) for x in range(0, len(list_2)): a = list_2[x] if x == 0: req = str(a) + " " else: req += str(a) + " " q = req.rstrip() print(req)
Traceback (most recent call last): File "/tmp/tmp55mecz_a/tmpadj74mof.py", line 1, in <module> a, b, c = [int(x) for x in raw_input().split(" ")] ^^^^^^^^^ NameError: name 'raw_input' is not defined
s235880165
p02393
u999470575
1463118852
Python
Python3
py
Runtime Error
0
0
363
a ,b ,c = input().split(' ') if int(a) > int(b) > int(c): print(int(c),int(b),int(a)) elif int(b) > int(c) > int(a): print(int(a),int(c),int(b)) elif int(c) > int(a) >???int(b): print(int(b),int(a),int(c)) elif int(c) > int(b) > int(a): print(int(a),int(b),int(c)) elif int(b) > int(a) > int(c): print(int(c),int(a),int(b)) else: print(int(b),int(c),int(a))
File "/tmp/tmp5r_og0dr/tmp39sben35.py", line 6 elif int(c) > int(a) >???int(b): ^ SyntaxError: invalid syntax
s496145504
p02393
u999470575
1463120628
Python
Python3
py
Runtime Error
0
0
363
a ,b ,c = input().split(' ') if int(a) > int(b) > int(c): print(int(c),int(b),int(a)) elif int(b) > int(c) > int(a): print(int(a),int(c),int(b)) elif int(c) > int(a) >???int(b): print(int(b),int(a),int(c)) elif int(c) > int(b) > int(a): print(int(a),int(b),int(c)) elif int(b) > int(a) > int(c): print(int(c),int(a),int(b)) else: print(int(b),int(c),int(a))
File "/tmp/tmpq7zum618/tmpv27v628b.py", line 6 elif int(c) > int(a) >???int(b): ^ SyntaxError: invalid syntax
s568355486
p02393
u104931506
1464194103
Python
Python3
py
Runtime Error
0
0
50
A = list(map(int, input().split())) print(sort(A))
Traceback (most recent call last): File "/tmp/tmpcebfk0ef/tmp9j2tafy9.py", line 1, in <module> A = list(map(int, input().split())) ^^^^^^^ EOFError: EOF when reading a line
s978855050
p02393
u177370127
1465188674
Python
Python3
py
Runtime Error
0
0
44
a = map(int, input().split()) a.sort() a[0:]
Traceback (most recent call last): File "/tmp/tmphqsvc1l2/tmp3x3df163.py", line 1, in <module> a = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s171382670
p02393
u177370127
1465188869
Python
Python3
py
Runtime Error
0
0
51
a = map(int, input().split()) a.sort() print(a[0:])
Traceback (most recent call last): File "/tmp/tmpe9h5javb/tmp2skfi9ow.py", line 1, in <module> a = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s582584599
p02393
u177370127
1465189148
Python
Python3
py
Runtime Error
0
0
82
a = list(map(int, input().split())) a.sort() print(a[0] + " " + a[1] + " " + a[2])
Traceback (most recent call last): File "/tmp/tmp1w29xj_b/tmpvbmpwq9a.py", line 1, in <module> a = list(map(int, input().split())) ^^^^^^^ EOFError: EOF when reading a line
s949046186
p02393
u811773570
1465266771
Python
Python3
py
Runtime Error
0
0
69
a=map(int,input().split()) a.sort() for i in range(3): print(a[i]),
Traceback (most recent call last): File "/tmp/tmpc2rw2g1o/tmpyjyllv_9.py", line 1, in <module> a=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s874763873
p02393
u587193722
1469516166
Python
Python3
py
Runtime Error
0
0
68
x = sorted([int(i) for i in input().split()]) print("{0} {1} {2}".x)
Traceback (most recent call last): File "/tmp/tmpqzwj0ppl/tmpbhu1nvgv.py", line 1, in <module> x = sorted([int(i) for i in input().split()]) ^^^^^^^ EOFError: EOF when reading a line
s798857395
p02393
u587193722
1469516191
Python
Python3
py
Runtime Error
0
0
76
x = sorted([int(i) for i in input().split()]) print("{0} {1} {2}".format(x))
Traceback (most recent call last): File "/tmp/tmpclx55pff/tmpbj7vti7f.py", line 1, in <module> x = sorted([int(i) for i in input().split()]) ^^^^^^^ EOFError: EOF when reading a line
s245260387
p02393
u671553883
1469516384
Python
Python3
py
Runtime Error
0
0
103
data = [int(i) for i in input)_.split()] data.sort() print("{0}{1}{2}".format(data[0],data[1],data[2])
File "/tmp/tmp6i21fswu/tmp8j973ofi.py", line 1 data = [int(i) for i in input)_.split()] ^ SyntaxError: closing parenthesis ')' does not match opening parenthesis '['
s413993300
p02393
u671553883
1469516414
Python
Python3
py
Runtime Error
0
0
104
data = [int(i) for i in input)_.split()] data.sort() print("{0}{1}{2}".format(data[0],data[1],data[2]))
File "/tmp/tmp8f2okgb4/tmpobzr65e_.py", line 1 data = [int(i) for i in input)_.split()] ^ SyntaxError: closing parenthesis ')' does not match opening parenthesis '['
s867799127
p02393
u671553883
1469516424
Python
Python3
py
Runtime Error
0
0
103
data = [int(i) for i in input).split()] data.sort() print("{0}{1}{2}".format(data[0],data[1],data[2]))
File "/tmp/tmpn0g4l2du/tmpylp9_ivs.py", line 1 data = [int(i) for i in input).split()] ^ SyntaxError: closing parenthesis ')' does not match opening parenthesis '['
s767673017
p02393
u382316013
1469516426
Python
Python3
py
Runtime Error
0
0
98
data = [int(i) for i in input().split()] data.sort() print("{0} {1} {2}".format(data[0],data[2]))
Traceback (most recent call last): File "/tmp/tmpxe7lhc0r/tmpjlhk1k8b.py", line 1, in <module> data = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s386524348
p02393
u747009765
1469516452
Python
Python3
py
Runtime Error
0
0
105
data = [int(i) for i in input().split()] data.sort() print("{0} {1} {2}".format(data[0],data[1],data[2])
File "/tmp/tmp5n5bj9cs/tmppbgepr8r.py", line 4 print("{0} {1} {2}".format(data[0],data[1],data[2]) ^ SyntaxError: '(' was never closed
s075071795
p02393
u382316013
1469516465
Python
Python3
py
Runtime Error
0
0
98
data = [int(i) for i in input().split()] data.sort() print("{0} {1} {2}".format(data[0],data[2]))
Traceback (most recent call last): File "/tmp/tmp2krwcrwg/tmpg4xdaddc.py", line 1, in <module> data = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s674908850
p02393
u644636020
1469516472
Python
Python3
py
Runtime Error
0
0
109
1data = [int(i) for i in input().split()] data.sort() print("{0} {1} {2}".format(data[0], data[1], data[2]))
File "/tmp/tmpahazrce2/tmp8kpxqqgk.py", line 1 1data = [int(i) for i in input().split()] ^ SyntaxError: invalid decimal literal
s317638035
p02393
u671553883
1469516481
Python
Python3
py
Runtime Error
0
0
105
data = [int(i) for i in input().split()] data.sort() print("{0}{1}{2}".format(data[0],data[1],data[2]))
File "/tmp/tmpkyxcov3f/tmp92eu_s5v.py", line 4 print("{0}{1}{2}".format(data[0],data[1],data[2])) IndentationError: unexpected indent
s463404242
p02393
u204883389
1469516490
Python
Python3
py
Runtime Error
0
0
104
data = [int(i) for i in input().split()] data.sort() print("{0}{1}{2}",format(data[0],data[1],data[2]))
Traceback (most recent call last): File "/tmp/tmp05atzqhh/tmpvw4fey0o.py", line 1, in <module> data = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s369927849
p02393
u204883389
1469516543
Python
Python3
py
Runtime Error
0
0
103
data =[int(i) for i in input().split()] data.sort() print("{0}{1}{2}",format(data[0],data[1],data[2]))
Traceback (most recent call last): File "/tmp/tmpe8q5fn0c/tmpcdugbklj.py", line 1, in <module> data =[int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s313457869
p02393
u204883389
1469516580
Python
Python3
py
Runtime Error
0
0
106
data = [int(i) for i in (input().split())] data.sort() print("{0}{1}{2}",format(data[0],data[1],data[2]))
Traceback (most recent call last): File "/tmp/tmpm3wk_33u/tmpr8xs0pna.py", line 1, in <module> data = [int(i) for i in (input().split())] ^^^^^^^ EOFError: EOF when reading a line
s564236846
p02393
u671553883
1469516639
Python
Python3
py
Runtime Error
0
0
104
data = [int(i) for i in input().split()] data.sort() print("{0}{1}{2}".format(data{0},data{1},data{2}))
File "/tmp/tmphw35c40g/tmp65_vzcbp.py", line 4 print("{0}{1}{2}".format(data{0},data{1},data{2})) ^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s863975853
p02393
u671553883
1469516781
Python
Python3
py
Runtime Error
0
0
106
data = [int(i) for i in input().split()] data.sort() print("{0}{1}{2}".format'(data[0],data[1],data[2])')
File "/tmp/tmpvua7e82c/tmpmt4kz2nj.py", line 4 print("{0}{1}{2}".format'(data[0],data[1],data[2])') ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s049587571
p02393
u671553883
1469516815
Python
Python3
py
Runtime Error
0
0
108
data = [int(i) for i in input().split()] data.sort() print("{0}{1}{2}".format(data[0],data[1],data[2]))
File "/tmp/tmpz4i320ib/tmp6zd2jpdk.py", line 4 print("{0}{1}{2}".format(data[0],data[1],data[2])) IndentationError: unexpected indent
s975672964
p02393
u204883389
1469516842
Python
Python3
py
Runtime Error
0
0
104
data = [int(i) for i in input().split()] data,sort() print("{0}{1}{2}".format(data[0],data[1],data[2]))
Traceback (most recent call last): File "/tmp/tmp882i1uky/tmpy4cj9alr.py", line 1, in <module> data = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s181875251
p02393
u671553883
1469516952
Python
Python3
py
Runtime Error
0
0
116
import data data = [int(i) for i in input().split()] data.sort() print("{0}{1}{2}".format(data[0],data[1],data[2]))
Traceback (most recent call last): File "/tmp/tmpf0t9f7t7/tmppcrnlht9.py", line 1, in <module> import data ModuleNotFoundError: No module named 'data'
s435073935
p02393
u671553883
1469517223
Python
Python3
py
Runtime Error
0
0
104
data = [int(i) for i in input().split()] data.sort() print("{0}{1}{2}".format[data[0],data[1],data[2]])
Traceback (most recent call last): File "/tmp/tmpo6zj9hms/tmp4vrthmw7.py", line 1, in <module> data = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s277718644
p02393
u628732336
1469596432
Python
Python3
py
Runtime Error
0
0
110
date = [int(1) for i in input().split()] date.sort() print("{0} {1} {2}".format(date[0],date[1],date[2]))
File "/tmp/tmp7pnmygs6/tmpek7ku850.py", line 4 print("{0} {1} {2}".format(date[0],date[1],date[2])) IndentationError: unexpected indent
s003608836
p02393
u628732336
1469596495
Python
Python3
py
Runtime Error
0
0
108
data = [int(i) for i in input().split()] ?? data.sort() print("{0} {1} {2}".format(data[0],data[1],data[2]))
File "/tmp/tmp5dl2_hj4/tmpyg_0t2_0.py", line 2 ?? ^ SyntaxError: invalid syntax
s252686078
p02393
u628732336
1469596862
Python
Python3
py
Runtime Error
0
0
108
data = [int(i) for i in input().split()] ?? data.sort() print("{0} {1} {2}".format(data[0],data[1],data[2]))
File "/tmp/tmporlc2ea5/tmp80e08n4j.py", line 2 ?? ^ SyntaxError: invalid syntax
s291723194
p02393
u510829608
1469779793
Python
Python3
py
Runtime Error
0
0
39
input() print(*sorted(input().split()))
Traceback (most recent call last): File "/tmp/tmpbawp8r5x/tmpz8crcmlh.py", line 1, in <module> input() EOFError: EOF when reading a line
s246466265
p02393
u216425054
1470670931
Python
Python3
py
Runtime Error
0
0
42
sorted([int(x) for x in input().split(()])
File "/tmp/tmp7yevqsk5/tmprw5scgey.py", line 1 sorted([int(x) for x in input().split(()]) ^ SyntaxError: closing parenthesis ']' does not match opening parenthesis '('
s120707339
p02393
u216425054
1470671431
Python
Python3
py
Runtime Error
0
0
86
sorted([int(x) for x in input().split()]) print(sorted[0]+" "+sorted[1]+" "+sorted[2])
Traceback (most recent call last): File "/tmp/tmphhiq_3tw/tmpy21xomf5.py", line 1, in <module> sorted([int(x) for x in input().split()]) ^^^^^^^ EOFError: EOF when reading a line
s910797982
p02393
u216425054
1470671525
Python
Python3
py
Runtime Error
0
0
85
list=sorted([int(x) for x in input().split()]) print(list[0]+" "+list[1]+" "+list[2])
Traceback (most recent call last): File "/tmp/tmph059mvke/tmp5my02x96.py", line 1, in <module> list=sorted([int(x) for x in input().split()]) ^^^^^^^ EOFError: EOF when reading a line
s983212483
p02393
u998435601
1470853957
Python
Python
py
Runtime Error
0
0
71
i = map(int, raw_input().split()).sort() for x in i: print x, print ""
File "/tmp/tmp78_c3f3q/tmpyj6gkzv0.py", line 3 print x, ^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s281857447
p02393
u808470263
1472568447
Python
Python3
py
Runtime Error
0
0
13
sorted(3,8,1)
Traceback (most recent call last): File "/tmp/tmp68dbxelt/tmpxe896bgh.py", line 1, in <module> sorted(3,8,1) TypeError: sorted expected 1 argument, got 3
s365903649
p02393
u808470263
1472568530
Python
Python3
py
Runtime Error
0
0
22
sorted(10000,1000,100)
Traceback (most recent call last): File "/tmp/tmpkly7ju2o/tmpm81qnub2.py", line 1, in <module> sorted(10000,1000,100) TypeError: sorted expected 1 argument, got 3
s168309099
p02393
u362094064
1473945293
Python
Python3
py
Runtime Error
0
0
107
a, b, c = 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)
File "/tmp/tmpfqj9934r/tmpk42_p1r6.py", line 1 a, b, c = input()split() ^^^^^ SyntaxError: invalid syntax
s248520021
p02393
u362094064
1473990874
Python
Python3
py
Runtime Error
0
0
112
(a, b, c) = 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)
File "/tmp/tmpk7ua77yc/tmpdx9e1msy.py", line 1 (a, b, c) = input()split() ^^^^^ SyntaxError: invalid syntax
s399143983
p02393
u419760455
1475224110
Python
Python3
py
Runtime Error
0
0
70
a, b, c = list(map(int, input().split())) sort(a, b ,c) print(a, b, c)
Traceback (most recent call last): File "/tmp/tmpxwvsqkgl/tmpya22dc6a.py", line 1, in <module> a, b, c = list(map(int, input().split())) ^^^^^^^ EOFError: EOF when reading a line
s875897149
p02393
u419760455
1475900155
Python
Python3
py
Runtime Error
0
0
77
a = list(map(int, input().split())) sort(a[0], a[2]) print(a[0], a[1], a[2])
Traceback (most recent call last): File "/tmp/tmpe0el0_h8/tmpr40p_8i4.py", line 1, in <module> a = list(map(int, input().split())) ^^^^^^^ EOFError: EOF when reading a line
s973961826
p02393
u419760455
1475900225
Python
Python3
py
Runtime Error
0
0
71
a = list(map(int, input().split())) num.sort() print(a[0], a[1], a[2])
Traceback (most recent call last): File "/tmp/tmpagt4fdsu/tmpbf5yadyt.py", line 1, in <module> a = list(map(int, input().split())) ^^^^^^^ EOFError: EOF when reading a line
s651800708
p02393
u831244171
1477487131
Python
Python
py
Runtime Error
0
0
88
x = raw_input().split() m = map(int,x) sort(m) a = m[0] b = m[1] c = m[2] print a,b,c
File "/tmp/tmp81mak_dz/tmp9x3cal6o.py", line 10 print a,b,c ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?