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
s607437171
p02392
u535719732
1559187088
Python
Python3
py
Runtime Error
0
0
127
num = list(map(int,input().split())) if(num[0] < num[1] && num[1] < num[2] && num[0] < num[2]): print("Yes") else: print("No")
File "/tmp/tmpu5g8ev_e/tmpo3p42q38.py", line 2 if(num[0] < num[1] && num[1] < num[2] && num[0] < num[2]): print("Yes") ^ SyntaxError: invalid syntax
s056882520
p02392
u073112878
1559195559
Python
Python3
py
Runtime Error
0
0
89
a, b, c=input().split() if 'a < b < c' : print("Yes") else : print("No")
File "/tmp/tmpki6h6zpf/tmp2ncbz7b7.py", line 4 else : ^^^^ SyntaxError: invalid syntax
s905053022
p02392
u073112878
1559195598
Python
Python3
py
Runtime Error
0
0
93
a, b, c=input().split() if 'a < b < c' : print( 'Yes' ) else : print( 'No' )
File "/tmp/tmpdyc1uufl/tmpuou8lt1x.py", line 4 else : ^^^^ SyntaxError: invalid syntax
s104134825
p02392
u073112878
1559195611
Python
Python3
py
Runtime Error
0
0
93
a, b, c=input().split() if 'a < b < c' : print( 'Yes' ) elif : print( 'No' )
File "/tmp/tmp0xju1n3t/tmpycb8pw9c.py", line 4 elif : ^^^^ SyntaxError: invalid syntax
s703478016
p02392
u579833671
1406963884
Python
Python
py
Runtime Error
0
0
97
a, b, c = mapt(int, raw_input().split()) if a < b and b < c: print "Yes" else: print "No"
File "/tmp/tmp6fiu6uno/tmpo2yc4t51.py", line 3 print "Yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s657060266
p02392
u481221703
1418863378
Python
Python
py
Runtime Error
0
0
147
import sys for line in sys.stdin.readline(): a, b, c = map(int, line.strip().split()) if (a < b) and (b < c): print "Yes" else: print "No"
File "/tmp/tmpy8857zkr/tmp8t3lo_9d.py", line 7 print "Yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s120923374
p02392
u481221703
1418863513
Python
Python
py
Runtime Error
0
0
143
import sys for line in sys.stdin.readlines(): a, b, c = map(int, line.strip().sprit()) if (a<b) and (b<c): print "Yes" else: print "No"
File "/tmp/tmpvq1t_0xu/tmp_4it3rim.py", line 6 print "Yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s303059148
p02392
u481221703
1418863604
Python
Python
py
Runtime Error
0
0
76
a, b, c = input_raw().split() if a<b<c: print "Yes" else: print "No"
File "/tmp/tmpqa9kjzd7/tmpblpkdtzf.py", line 3 print "Yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s008696167
p02392
u745846646
1422240368
Python
Python3
py
Runtime Error
0
0
235
x =input().split(' ') a = int(x[0]) b = int(x[1]) c = int(x[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 c <= a <= b: print(c, a, b) else: print(c, b, a)
File "/tmp/tmprk6x_483/tmp8cydpuzi.py", line 8 elif a <= c <= b ^ SyntaxError: expected ':'
s700402847
p02392
u067975558
1422326721
Python
Python3
py
Runtime Error
0
0
131
(a, b, c) = input().rstrip().split(' ') a = int(a) b = int(b) c = int(c) if a < b && b < c: print('Yes') else: print('No')
File "/tmp/tmp9sk3qylx/tmp5o8y6jy8.py", line 6 if a < b && b < c: ^ SyntaxError: invalid syntax
s263112830
p02392
u823030818
1422327351
Python
Python3
py
Runtime Error
0
0
123
(a, b, c) = input().rstrip().split() a = int(a) b = int(b) c = int(c) if a < b < c; print('Yes') else; print('No')
File "/tmp/tmpyotjsm7y/tmp77_nsrow.py", line 6 if a < b < c; ^ SyntaxError: invalid syntax
s087858170
p02392
u823030818
1422327364
Python
Python3
py
Runtime Error
0
0
123
(a, b, c) = input().rstrip().split() a = int(a) b = int(b) c = int(c) if a < b < c: print('Yes') else; print('No')
File "/tmp/tmpyb8leldz/tmpft2slui9.py", line 8 else; ^ SyntaxError: expected ':'
s158225228
p02392
u297342993
1422327399
Python
Python3
py
Runtime Error
0
0
114
(a,b,c) = input().rstrip().split() a = int(a) b = int(b) c = int(c) if a < b < c print("Yes") else: print("No")
File "/tmp/tmpma5u4376/tmpxc5xcyhw.py", line 6 if a < b < c ^ SyntaxError: expected ':'
s957390966
p02392
u088816384
1424987177
Python
Python3
py
Runtime Error
0
0
80
a, b, c = map(int, raw_input().split()) if a<b<c: print "Yes" else: print "No"
File "/tmp/tmpuo4y7i0b/tmpf9hk_5ts.py", line 3 print "Yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s737710512
p02392
u088816384
1424987373
Python
Python3
py
Runtime Error
0
0
80
a, b, c = map(int, raw_input().split()) if a<b<c: print "Yes" else: print "No"
File "/tmp/tmpfdyv0f4c/tmphqe9hrfx.py", line 3 print "Yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s645374066
p02392
u088816384
1424988315
Python
Python3
py
Runtime Error
0
0
80
a, b, c = map(int, raw_input().split()) if a<b<c: print "Yes" else: print "No"
File "/tmp/tmpi78ltp2v/tmp6cl7rson.py", line 3 print "Yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s934838516
p02392
u088816384
1424988349
Python
Python3
py
Runtime Error
0
0
91
import sys a, b, c = map(int, raw_input().split()) if a<b<c: print "Yes" else: print "No"
File "/tmp/tmpadn12xd3/tmpibrn1wws.py", line 4 print "Yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s756296667
p02392
u088816384
1424988413
Python
Python3
py
Runtime Error
0
0
104
# -*- coding: UTF-8 -*- a, b, c = map(int, raw_input().split()) if a<b<c: print "Yes" else: print "No"
File "/tmp/tmpcv0v7k9x/tmpgyw2ffvu.py", line 4 print "Yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s745655511
p02392
u140201022
1431537193
Python
Python
py
Runtime Error
0
0
71
m,n,o=map(int, raw_input().split()) print'Yes' if m<n<o else:print 'No'
File "/tmp/tmpupgp_tpd/tmpq7vd89hk.py", line 2 print'Yes' if m<n<o else:print 'No' ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s135530517
p02392
u062590758
1432109689
Python
Python3
py
Runtime Error
0
0
78
a,b,c=map(int,input().split()) if a<b && b<c: print('Yes') else: print('No')
File "/tmp/tmpf5begegr/tmp38zas4ot.py", line 2 if a<b && b<c: ^ SyntaxError: invalid syntax
s702221111
p02392
u172616925
1434907577
Python
Python
py
Runtime Error
0
0
80
a,b,c = map(int, raw_input().split()) if a < b < c: print yes else: print no
File "/tmp/tmpp8k_t_lt/tmpvnxkqmzp.py", line 3 print yes ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s034313061
p02392
u255164080
1436150870
Python
Python3
py
Runtime Error
0
0
126
nums = ['a', 'b', 'c'] a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a < b < c: print('Yes') else: print('No')
Traceback (most recent call last): File "/tmp/tmplumcgr_p/tmpgsvul4bj.py", line 2, in <module> a = int(nums[0]) ^^^^^^^^^^^^ ValueError: invalid literal for int() with base 10: 'a'
s909770766
p02392
u446066125
1436150944
Python
Python3
py
Runtime Error
0
0
131
num = input().split(); a = int(num[0]); b = int(num[1]); c = int(num[2]); if a < b && b < c: print('Yes'); else : print('No');
File "/tmp/tmpmmnxzbbw/tmphc_72xrc.py", line 6 if a < b && b < c: ^ SyntaxError: invalid syntax
s058645121
p02392
u733449206
1436151068
Python
Python3
py
Runtime Error
0
0
126
nums = input().split() a = int(nums[0]) b = int(nums[1]) c = unt(nums[2]) if a < b < c: print('Yes') else: print('No')
Traceback (most recent call last): File "/tmp/tmpgy_uoxyu/tmpgohjmvep.py", line 1, in <module> nums = input().split() ^^^^^^^ EOFError: EOF when reading a line
s122246908
p02392
u255164080
1436151079
Python
Python3
py
Runtime Error
0
0
133
nums = input().split().split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a < b < c print('Yes') else: print('No')
File "/tmp/tmpldppqbkz/tmpn1lcevoy.py", line 5 if a < b < c ^ SyntaxError: expected ':'
s337723520
p02392
u605525736
1436151566
Python
Python3
py
Runtime Error
0
0
126
nums = input().split() a = int(nums[1]) b = int(nums[3]) c = int(nums[8]) if a < b < c: print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmp3lfurjp3/tmp_1j5jpvk.py", line 1, in <module> nums = input().split() ^^^^^^^ EOFError: EOF when reading a line
s117596122
p02392
u255164080
1436151665
Python
Python3
py
Runtime Error
0
0
113
nums = input().split() a = (nums[0]) b = (nums[1]) c = (nums[2]) if a < b < c: print(Yes) else: print(No)
Traceback (most recent call last): File "/tmp/tmpn57u56eo/tmp1ddztem7.py", line 1, in <module> nums = input().split() ^^^^^^^ EOFError: EOF when reading a line
s146435455
p02392
u152353734
1436151696
Python
Python3
py
Runtime Error
0
0
120
nums = input().split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a < b < c: print(Yes) else: print(No)
Traceback (most recent call last): File "/tmp/tmpgc39thn1/tmpsnxktmw4.py", line 1, in <module> nums = input().split() ^^^^^^^ EOFError: EOF when reading a line
s487362950
p02392
u925228699
1436151854
Python
Python3
py
Runtime Error
0
0
105
nums = inpu().split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a < b < c: print(a, d, c)
Traceback (most recent call last): File "/tmp/tmprsncrh8n/tmpau99g10i.py", line 1, in <module> nums = inpu().split() ^^^^ NameError: name 'inpu' is not defined. Did you mean: 'input'?
s009038388
p02392
u152353734
1436151876
Python
Python3
py
Runtime Error
0
0
102
nums = input().split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a < b < c: print(Yes)
Traceback (most recent call last): File "/tmp/tmp287vjzb0/tmpgu_c6g60.py", line 1, in <module> nums = input().split() ^^^^^^^ EOFError: EOF when reading a line
s960866855
p02392
u925228699
1436151888
Python
Python3
py
Runtime Error
0
0
105
nums = inpu().split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a < b < c: print(a, d, c)
Traceback (most recent call last): File "/tmp/tmp38fjojkx/tmplfmab_hr.py", line 1, in <module> nums = inpu().split() ^^^^ NameError: name 'inpu' is not defined. Did you mean: 'input'?
s436997471
p02392
u467309160
1436151955
Python
Python3
py
Runtime Error
0
0
126
nums = input().split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a < b < c: print('Yes') elif; print('No')
File "/tmp/tmpdkzyu1d5/tmpt1nuye_q.py", line 7 elif; ^ SyntaxError: invalid syntax
s690536545
p02392
u686134343
1436152137
Python
Python3
py
Runtime Error
0
0
128
nums = input().split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a < b < c: print("Yse") elif: print("No")
File "/tmp/tmpa2a71ytz/tmpaa6xpa81.py", line 7 elif: ^ SyntaxError: invalid syntax
s449031308
p02392
u255164080
1436152429
Python
Python3
py
Runtime Error
0
0
125
nums = input().split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a < b < c: print('Yes') else print('No')
File "/tmp/tmp31zm9vaa/tmp9rslkwu0.py", line 7 else ^ SyntaxError: expected ':'
s343997749
p02392
u118723993
1436152447
Python
Python3
py
Runtime Error
0
0
105
nums = input().split() a = int(nams[0]) b = int(nums[1]) c = int(nums[2]) if a < b < c: print(a,b,c,)
Traceback (most recent call last): File "/tmp/tmpb79jfo4a/tmpmp3rf5_w.py", line 1, in <module> nums = input().split() ^^^^^^^ EOFError: EOF when reading a line
s090748940
p02392
u484576700
1436449856
Python
Python
py
Runtime Error
0
0
93
a, b, c=map(int, raw_input().split()) if a<b<c: ????????print "Yes" else: ????????print "No"
File "/tmp/tmp77cyy9lg/tmppkbn43ll.py", line 3 ????????print "Yes" ^ IndentationError: expected an indented block after 'if' statement on line 2
s207936320
p02392
u484576700
1436449873
Python
Python
py
Runtime Error
0
0
93
a, b, c=map(int, raw_input().split()) if a<b<c: ????????print "Yes" else: ????????print "No"
File "/tmp/tmpy12ukmqf/tmpy2mfjfmb.py", line 3 ????????print "Yes" ^ IndentationError: expected an indented block after 'if' statement on line 2
s408239245
p02392
u925228699
1437961403
Python
Python3
py
Runtime Error
0
0
110
import math r = float(input()) s = r * r * math.pi l = r * 2 * math.pi print('%.5f %.5f' % (s, l))
Traceback (most recent call last): File "/tmp/tmphqudyv2c/tmpdrfzatic.py", line 3, in <module> r = float(input()) ^^^^^^^ EOFError: EOF when reading a line
s948867345
p02392
u925228699
1437961431
Python
Python3
py
Runtime Error
0
0
110
import math r = float(input()) s = r * r * math.pi l = r * 2 * math.pi print('%.5f %.5f' % (s, l))
Traceback (most recent call last): File "/tmp/tmp3pwhs0wd/tmp4gu2pate.py", line 3, in <module> r = float(input()) ^^^^^^^ EOFError: EOF when reading a line
s127675289
p02392
u118723993
1439775018
Python
Python3
py
Runtime Error
0
0
293
using namespace std; int main() { int a = 0, b = 0, c = 0; cin >> a >> b >> c; if(a < c){ if(a < b && b < c) cout << "Yes" << endl; else cout << "No" << endl; } else cout << "No" << endl; return 0; }
File "/tmp/tmpkyy1sst4/tmp5hy9fk2d.py", line 2 using namespace std; ^^^^^^^^^ SyntaxError: invalid syntax
s631465384
p02392
u473077745
1439779513
Python
Python3
py
Runtime Error
0
0
81
a, b = map(int, input().split()) if a < b < c: print('Yes') else: print('No')
Traceback (most recent call last): File "/tmp/tmpz0q4w4qg/tmp6gtjzzph.py", line 1, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s810299516
p02392
u814658648
1439963621
Python
Python3
py
Runtime Error
0
0
90
a, b, c = map(int, input().split()) if a < b && b < c: print("YES") else: print("NO")
File "/tmp/tmpkdofc2rw/tmpvvt0raz5.py", line 3 if a < b && b < c: ^ SyntaxError: invalid syntax
s007234883
p02392
u463783070
1440651046
Python
Python3
py
Runtime Error
0
0
131
num = input().split() a = int(num[0]) b = int(num[1]) c = int(num[2]) if a < b < c : print("Yes") else : print("No")
File "/tmp/tmpbm572c45/tmpguzsbott.py", line 2 a = int(num[0]) IndentationError: unexpected indent
s122792262
p02392
u253463900
1442200006
Python
Python3
py
Runtime Error
0
0
136
data = input() x = [] x = data.split() a = int(x[0]) b = int(x[1]) c = int(x[2]) if(a < b < c): print('Yes') elif: print("No")
File "/tmp/tmpx61_a_95/tmpai7_juct.py", line 11 elif: ^ SyntaxError: invalid syntax
s825846199
p02392
u894381890
1442204985
Python
Python
py
Runtime Error
0
0
110
import sys x = sys.stdin.readline() a, b, c = x.split(" ") if a < b && b < c: print Yes else: print No
File "/tmp/tmpz5szs_fl/tmp3b1z3l66.py", line 7 if a < b && b < c: ^ SyntaxError: invalid syntax
s483178821
p02392
u894381890
1442208887
Python
Python
py
Runtime Error
0
0
142
import sys x = sys.stdin.readline() a_list = x.split(" ") if a_list[0] < a_list[1] and a_list[1] < a_list[2]: print Yes else: print No
File "/tmp/tmput3evufy/tmpphz9n4wv.py", line 8 print Yes ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s205225759
p02392
u894381890
1442208940
Python
Python
py
Runtime Error
0
0
162
import sys x = sys.stdin.readline() a_list = x.split(" ") if int(a_list[0]) < int(a_list[1]) and int(a_list[1]) < int(a_list[2]): print Yes else: print No
File "/tmp/tmpafsb7vmg/tmpotuql8f3.py", line 8 print Yes ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s311166476
p02392
u775586391
1447777565
Python
Python3
py
Runtime Error
0
0
98
a,b,c = map(int,input().spit()) if b <= a: print(No) elif c <= b: print(No) else: print(Yes)
Traceback (most recent call last): File "/tmp/tmp4vj0c9wp/tmpa7xu3e37.py", line 1, in <module> a,b,c = map(int,input().spit()) ^^^^^^^ EOFError: EOF when reading a line
s413956027
p02392
u775586391
1447777611
Python
Python3
py
Runtime Error
0
0
99
a,b,c = map(int,input().split()) if b <= a: print(No) elif c <= b: print(No) else: print(Yes)
Traceback (most recent call last): File "/tmp/tmpfsfhgy00/tmp7zcdtyz7.py", line 1, in <module> a,b,c = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s440134938
p02392
u982618289
1448861648
Python
Python3
py
Runtime Error
0
0
135
input = input).strip().split() a = int(input[0]) b = int(input[1]) c = int(input[2]) if a>b>c: print("Yes") else: print("No")
File "/tmp/tmpy_se_2so/tmp635xps5c.py", line 1 input = input).strip().split() ^ SyntaxError: unmatched ')'
s527753640
p02392
u663227983
1452510148
Python
Python
py
Runtime Error
0
0
82
m = map(int,raw_input().split()) if m[0] < m[1] < m[2]: print Yes else: print No
File "/tmp/tmpfvach02h/tmpqtokek2b.py", line 3 print Yes ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s098295699
p02392
u663227983
1452510154
Python
Python
py
Runtime Error
0
0
82
m = map(int,raw_input().split()) if m[0] < m[1] < m[2]: print Yes else: print No
File "/tmp/tmpi4dozd3f/tmp86g6d9hq.py", line 3 print Yes ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s046414913
p02392
u424209323
1452652944
Python
Python
py
Runtime Error
0
0
94
a, b, c = map(int, input().split()) if a < b and b < c: print "Yes" else: print "No"
File "/tmp/tmppdsolrxx/tmpbs7g7eef.py", line 4 print "Yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s701987316
p02392
u424209323
1452652955
Python
Python
py
Runtime Error
0
0
96
a, b, c = map(int, input().split()) if (a < b and b < c): print "Yes" else: print "No"
File "/tmp/tmpq_us586p/tmps1rggdkj.py", line 4 print "Yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s953648545
p02392
u613805578
1452698646
Python
Python
py
Runtime Error
0
0
96
a, b, c = map(int, raw_input().split()) if a < b and b < c: return "Yes" else: return "NO"
File "/tmp/tmp9qpquf1k/tmpgvx2u2e7.py", line 3 return "Yes" ^^^^^^^^^^^^ SyntaxError: 'return' outside function
s574734609
p02392
u920118302
1452747289
Python
Python
py
Runtime Error
0
0
89
a, b, c = map(int, raw_input().split()) if a < b < c: print'"Yes") else: print("No")
File "/tmp/tmpq_zet18s/tmp9zghfm7d.py", line 4 print'"Yes") ^ SyntaxError: unterminated string literal (detected at line 4)
s096286298
p02392
u724923896
1452845512
Python
Python
py
Runtime Error
0
0
86
a, b, c = map(int, raw_input().split()) if a < b and b < c: print yes else print no
File "/tmp/tmp8vvrrh4m/tmpkqwpx4pl.py", line 4 print yes ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s571050059
p02392
u724923896
1452845536
Python
Python
py
Runtime Error
0
0
91
a, b, c = map(int, raw_input().split()) if a < b and b < c: print "yes" else print "no"
File "/tmp/tmp90_8wa0k/tmpl35cgo9h.py", line 4 print "yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s136711598
p02392
u724923896
1452845574
Python
Python
py
Runtime Error
0
0
88
a, b, c = map(int, raw_input().split()) if a < b and b < c: print yes else: print no
File "/tmp/tmp8ymvh9ih/tmpz7abnrrn.py", line 4 print yes ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s398527811
p02392
u967035362
1453185583
Python
Python
py
Runtime Error
0
0
90
a, b, c = map(int, raw_input().split()) if a < b < c : print Yes else print No
File "/tmp/tmpdt6wv5h1/tmp5ya8gt71.py", line 4 print Yes ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s651747467
p02392
u020577611
1453203380
Python
Python3
py
Runtime Error
0
0
91
a=map(int, raw_input().split()) if a[0]<a[1]<a[2]: print("Yes") else : print("No")
Traceback (most recent call last): File "/tmp/tmp_6j0u48h/tmpala6lwxw.py", line 1, in <module> a=map(int, raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s699987966
p02392
u393769849
1453205087
Python
Python
py
Runtime Error
0
0
88
a, b, c = map(int, input().split()) if a < b: if b < c: print "yes" elif: print "no"
File "/tmp/tmpc9xv6xfp/tmpvuevxpai.py", line 4 print "yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s015218786
p02392
u393769849
1453205181
Python
Python
py
Runtime Error
0
0
88
a, b, c = map(int, input().split()) if a < b: if b < c: print "Yes" elif: print "No"
File "/tmp/tmp5dfe5h2f/tmpkplbnsgd.py", line 4 print "Yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s545814171
p02392
u393769849
1453205312
Python
Python
py
Runtime Error
0
0
83
a, b, c = map(int, input().split()) if a < b < c: print "Yes" elif: print "No"
File "/tmp/tmpsoqwq5ax/tmpxwhpzyle.py", line 4 print "Yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s793968720
p02392
u393769849
1453205361
Python
Python
py
Runtime Error
0
0
80
a, b, c = map(int, input().split()) if a < b < c: print "Yes" elif: print "No"
File "/tmp/tmp5d86kes2/tmp823_4e6b.py", line 3 print "Yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s783656651
p02392
u393769849
1453205479
Python
Python
py
Runtime Error
0
0
88
a, b, c = map(int, input().split()) if a < b: if b < c: print "Yes" else: print "No"
File "/tmp/tmphh8ti0m2/tmprnonrhct.py", line 4 print "Yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s199828636
p02392
u393769849
1453205500
Python
Python
py
Runtime Error
0
0
92
a, b, c = map(int, input().split()) if a < b: if b < c: print ("Yes") else: print ("No")
Traceback (most recent call last): File "/tmp/tmpew07haxk/tmpnzf39742.py", line 1, in <module> a, b, c = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s283738060
p02392
u393769849
1453205545
Python
Python
py
Runtime Error
0
0
94
a, b, c = map(int, input().split("")) if a < b: if b < c: print ("Yes") else: print ("No")
Traceback (most recent call last): File "/tmp/tmp4wltw5jr/tmpctakxsf9.py", line 1, in <module> a, b, c = map(int, input().split("")) ^^^^^^^ EOFError: EOF when reading a line
s952239589
p02392
u393769849
1453205615
Python
Python
py
Runtime Error
0
0
86
a, b, c = map(int, input().split("")) if a < b < c: print ("Yes") else: print ("No")
Traceback (most recent call last): File "/tmp/tmp0sm8jq71/tmpjs8gtij9.py", line 1, in <module> a, b, c = map(int, input().split("")) ^^^^^^^ EOFError: EOF when reading a line
s561834452
p02392
u393769849
1453205652
Python
Python
py
Runtime Error
0
0
92
a, b, c = map(int, input().split("")) if a < b and b < c: print ("Yes") else: print ("No")
Traceback (most recent call last): File "/tmp/tmpk_jb8267/tmpbj4a_qgr.py", line 1, in <module> a, b, c = map(int, input().split("")) ^^^^^^^ EOFError: EOF when reading a line
s354016784
p02392
u393769849
1453205656
Python
Python
py
Runtime Error
0
0
92
a, b, c = map(int, input().split("")) if a < b and b < c: print ("Yes") else: print ("No")
Traceback (most recent call last): File "/tmp/tmpvzqtqh3a/tmpl46yzfj8.py", line 1, in <module> a, b, c = map(int, input().split("")) ^^^^^^^ EOFError: EOF when reading a line
s027882561
p02392
u393769849
1453205677
Python
Python
py
Runtime Error
0
0
88
a, b, c = map(int, input().split("")) if a < b and b < c: print "Yes" else: print "No"
File "/tmp/tmp4sw1fumb/tmpj20hpcmx.py", line 3 print "Yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s471881916
p02392
u393769849
1453205713
Python
Python
py
Runtime Error
0
0
92
a, b, c = map(int, raw_input().split("")) if a < b and b < c: print "Yes" else: print "No"
File "/tmp/tmp07gi2b59/tmpu96km4jq.py", line 3 print "Yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s242442605
p02392
u038243492
1453214791
Python
Python
py
Runtime Error
0
0
150
#include<cstdio> using namespace std; int main(){ int a,b,c; scanf("%d %d %d",&a,&b,&c); if((a<b)&&(b<c))puts("Yes"); else puts("No"); return 0; }
File "/tmp/tmpr7gv_tus/tmp9ril_v8c.py", line 2 using namespace std; ^^^^^^^^^ SyntaxError: invalid syntax
s136407652
p02392
u038243492
1453214821
Python
Python
py
Runtime Error
0
0
152
#include<cstdio> using namespace std; int main(){ int a,b,c; scanf("%d %d %d",&a,&b,&c); if((a<b)&&(b<c))puts("Yes"); else puts("No"); return 0; }
File "/tmp/tmpae6q7_6v/tmp7z9jyngs.py", line 2 using namespace std; ^^^^^^^^^ SyntaxError: invalid syntax
s257779722
p02392
u119456964
1453254019
Python
Python
py
Runtime Error
0
0
95
a, b, c = map(int, raw_input().split()) if a > b and b > c: return "yes" else: return "no"
File "/tmp/tmphim5wvtp/tmp9y6yqsv5.py", line 4 return "yes" ^^^^^^^^^^^^ SyntaxError: 'return' outside function
s066501250
p02392
u682357930
1453254024
Python
Python
py
Runtime Error
0
0
67
a,b,c = input().split() if a<b<c: print 'yes' else: print 'no'
File "/tmp/tmp16fnpuss/tmpzl16yd72.py", line 4 print 'yes' ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s369408227
p02392
u682357930
1453254033
Python
Python
py
Runtime Error
0
0
59
a,b,c = input() if a<b<c: print 'yes' else: print 'no'
File "/tmp/tmpzjdx33v5/tmps76apcmp.py", line 4 print 'yes' ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s459448302
p02392
u682357930
1453254052
Python
Python
py
Runtime Error
0
0
76
a,b,c = map(int,input().split()) if a<b<c: print 'yes' else: print 'no'
File "/tmp/tmpce0alckr/tmpla9a4o_q.py", line 4 print 'yes' ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s766932635
p02392
u682357930
1453254062
Python
Python
py
Runtime Error
0
0
82
a,b,c = map(int,input().split()) if a<b and b<c: print 'yes' else: print 'no'
File "/tmp/tmpnc5z2wtl/tmp3ytwgkov.py", line 4 print 'yes' ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s635112481
p02392
u130979865
1459553635
Python
Python
py
Runtime Error
0
0
154
# -*- coding: utf-8 -*- list = map(int, raw_input().split()) a = list[0] b = list[1] c = list[2] if a < b && b < c: print "Yes" else: print "No"
File "/tmp/tmp4jed7mv9/tmpey37m27b.py", line 8 if a < b && b < c: ^ SyntaxError: invalid syntax
s582451988
p02392
u402330988
1459729169
Python
Python3
py
Runtime Error
0
0
87
a,b,c = map(int, input(),split(" ")) if a < b < c: print "Yes" else: print"No"
File "/tmp/tmpsofhl5af/tmppbv1c4z3.py", line 4 print "Yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s647033979
p02392
u402330988
1459729196
Python
Python3
py
Runtime Error
0
0
84
a,b,c = map(int, input(),split()) if a < b < c: print "Yes" else: print"No"
File "/tmp/tmpt50suzoi/tmprdzsqykb.py", line 4 print "Yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s444094244
p02392
u402330988
1459729252
Python
Python3
py
Runtime Error
0
0
85
a,b,c = map(int, input(),split()) if a < b < c: print "Yes" else: print "No"
File "/tmp/tmp4iycgrdu/tmpeq6fkc0l.py", line 4 print "Yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s903283845
p02392
u402330988
1459729266
Python
Python3
py
Runtime Error
0
0
87
a,b,c = map(int, input(),split()) if a < b < c: print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmp1mxn469b/tmpuyfi4h03.py", line 1, in <module> a,b,c = map(int, input(),split()) ^^^^^^^ EOFError: EOF when reading a line
s168705410
p02392
u077284614
1461234673
Python
Python3
py
Runtime Error
0
0
80
a, b, c=map(int,input().split()) if a<b && b<c: print("yes") else: print("no")
File "/tmp/tmp4zlaplgy/tmpm5gnz1aa.py", line 2 if a<b && b<c: ^ SyntaxError: invalid syntax
s736744461
p02392
u077284614
1461234711
Python
Python3
py
Runtime Error
0
0
80
a, b, c=map(int,input().split()) if a<b && b<c: print("yes") else: print("no")
File "/tmp/tmpuxenjaww/tmpova_k932.py", line 2 if a<b && b<c: ^ SyntaxError: invalid syntax
s945765841
p02392
u908429180
1464589362
Python
Python
py
Runtime Error
0
0
109
nums = list(map(int, input().split())) if nums[0] < nums[1] < nums[2]: print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmps1trbdqj/tmp94q47auw.py", line 1, in <module> nums = list(map(int, input().split())) ^^^^^^^ EOFError: EOF when reading a line
s998186275
p02392
u106088354
1464767973
Python
Python3
py
Runtime Error
0
0
123
in = split(input()) a = int(in[0]) b = int(in[1]) c = int(in[2]) if a < b && b < c: print("yes") else: print("no")
File "/tmp/tmpns5kvq3b/tmp8hc6utem.py", line 1 in = split(input()) ^^ SyntaxError: invalid syntax
s508207776
p02392
u106088354
1464768196
Python
Python3
py
Runtime Error
0
0
91
a, b, c = map(int, split(input())) if (a < b < c): print("yes") else: print("no")
Traceback (most recent call last): File "/tmp/tmp0l3itpuo/tmpe54vyx91.py", line 1, in <module> a, b, c = map(int, split(input())) ^^^^^ NameError: name 'split' is not defined
s047315963
p02392
u106088354
1464768245
Python
Python3
py
Runtime Error
0
0
91
a, b, c = map(int, split(input())) if (a < b < c): print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmpbejun9we/tmptm0z7hi9.py", line 1, in <module> a, b, c = map(int, split(input())) ^^^^^ NameError: name 'split' is not defined
s791403488
p02392
u177370127
1465188440
Python
Python3
py
Runtime Error
0
0
110
a = int(input()) b = int(input()) c = int(input()) if a < b and b < c: print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmp259j872k/tmph5t6mvy6.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s563123668
p02392
u119456964
1465792570
Python
Python
py
Runtime Error
0
0
82
a, b, c = map(raw_input().split()) if a < b < c: print 'Yes' else: print 'No'
File "/tmp/tmpob0q52kx/tmphs2oi68s.py", line 4 print 'Yes' ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s645023248
p02392
u119456964
1465792581
Python
Python
py
Runtime Error
0
0
86
a, b, c = map(raw_input().split()) if a < b && b< c: print 'Yes' else: print 'No'
File "/tmp/tmp__mfwy0y/tmp_zv5zrgt.py", line 3 if a < b && b< c: ^ SyntaxError: invalid syntax
s115429078
p02392
u119456964
1465792597
Python
Python
py
Runtime Error
0
0
88
a, b, c = map(raw_input().split()) if a < b and b < c: print 'Yes' else: print 'No'
File "/tmp/tmpqqsh635s/tmppy92uuzb.py", line 4 print 'Yes' ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s449175814
p02392
u210148484
1466657252
Python
Python3
py
Runtime Error
0
0
87
a, b, c = map(int, input().split) if a < b < c : print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmp5od1fpbb/tmpkxi22zm7.py", line 1, in <module> a, b, c = map(int, input().split) ^^^^^^^ EOFError: EOF when reading a line
s269004371
p02392
u210148484
1466657536
Python
Python3
py
Runtime Error
0
0
86
a, b, c = map(int, input().split) if a < b < c: print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmppqs9ugev/tmpmpkbfaa2.py", line 1, in <module> a, b, c = map(int, input().split) ^^^^^^^ EOFError: EOF when reading a line
s700001353
p02392
u867908153
1468170509
Python
Python3
py
Runtime Error
0
0
117
as, bs, cs = input().split(" ") a = int(as) b = int(bs) c = int(cs) if a < b < c: print("Yes") else print("No")
File "/tmp/tmp9f8e28h7/tmpk8_jw5je.py", line 1 as, bs, cs = input().split(" ") ^^ SyntaxError: invalid syntax
s037245275
p02392
u867908153
1468170530
Python
Python3
py
Runtime Error
0
0
118
as, bs, cs = input().split(" ") a = int(as) b = int(bs) c = int(cs) if a < b < c: print("Yes") else: print("No")
File "/tmp/tmp5naln40u/tmpkfvvq0q6.py", line 1 as, bs, cs = input().split(" ") ^^ SyntaxError: invalid syntax
s495808289
p02392
u514745787
1469516107
Python
Python3
py
Runtime Error
0
0
92
a,b,c = [int(i) for i in input()] if a < b < c: print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmpitpou5n5/tmpy47krucz.py", line 1, in <module> a,b,c = [int(i) for i in input()] ^^^^^^^ EOFError: EOF when reading a line