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
s088769894
p02391
u626266743
1508293034
Python
Python3
py
Runtime Error
0
0
120
a = int(input()) b = int(input()) if a > b: print("a > b") elif a == b: print("a == b") else: print("a < b")
Traceback (most recent call last): File "/tmp/tmpj13dggta/tmp9y7bc3hj.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s133272417
p02391
u626266743
1508293209
Python
Python3
py
Runtime Error
0
0
111
a, b = map(int, input()) if a > b: print("a > b") elif a == b: print("a == b") else: print("a < b")
Traceback (most recent call last): File "/tmp/tmp61tni0x1/tmpnlnckvq3.py", line 1, in <module> a, b = map(int, input()) ^^^^^^^ EOFError: EOF when reading a line
s816764312
p02391
u626266743
1508293321
Python
Python3
py
Runtime Error
0
0
117
a, b = map(int, input().split) if a > b: print("a > b") elif a == b: print("a == b") else: print("a < b")
Traceback (most recent call last): File "/tmp/tmp52hfn8c6/tmppnoago1l.py", line 1, in <module> a, b = map(int, input().split) ^^^^^^^ EOFError: EOF when reading a line
s967588316
p02391
u043968625
1509258618
Python
Python3
py
Runtime Error
0
0
121
num=int(input().split()) if num[0]>num[1]: print("a>b") elif num[0]==num[1]: print("a==b") else: print("a<b")
Traceback (most recent call last): File "/tmp/tmpf_9fom2f/tmp8kg0myyd.py", line 1, in <module> num=int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s250394889
p02391
u518939641
1509379180
Python
Python3
py
Runtime Error
0
0
108
a,b=list(map(int,input().split()) if a<b: print('a < b') elsif a==b: print('a > b') else: print('a == b')
File "/tmp/tmpg8ovsh9a/tmpz_v319na.py", line 1 a,b=list(map(int,input().split()) ^ SyntaxError: '(' was never closed
s633547532
p02391
u518939641
1509379245
Python
Python3
py
Runtime Error
0
0
107
a,b=list(map(int,input().split()) if a<b: print('a < b') elif a==b: print('a > b') else: print('a == b')
File "/tmp/tmpjdnxc0b4/tmpuwxt4wfz.py", line 1 a,b=list(map(int,input().split()) ^ SyntaxError: '(' was never closed
s255638753
p02391
u725391514
1510330312
Python
Python3
py
Runtime Error
0
0
106
a, b=map(int, input().split()) if a>b: print("a>b") if a<b: print("a<b") if a==b print("a==b")
File "/tmp/tmp4vwio8wt/tmprskxr8xi.py", line 6 if a==b ^ SyntaxError: expected ':'
s405277660
p02391
u725391514
1510330397
Python
Python3
py
Runtime Error
0
0
106
a, b=map(int, input().split()) if a>b: print("a>b") if a<b: print("a<b") if a==b print("a==b")
File "/tmp/tmpanmlb_58/tmpl_ihtlf3.py", line 6 if a==b ^ SyntaxError: expected ':'
s194498619
p02391
u725391514
1510330555
Python
Python3
py
Runtime Error
0
0
109
a, b=map(int, input().split()) if a>b: print("a>b") else if a<b: print("a<b") else: print("a==b")
File "/tmp/tmpgaqed_7h/tmpfmcxv4y_.py", line 4 else if a<b: ^^ SyntaxError: expected ':'
s024416213
p02391
u725391514
1510330704
Python
Python3
py
Runtime Error
0
0
111
a,b= map(int, input().split()) if a<b: ??print("a < b") elif a>b: ??print("a > b") elif a==b: ??print("a == b")
File "/tmp/tmpb5hg95h9/tmpt2y2loep.py", line 3 ??print("a < b") ^ IndentationError: expected an indented block after 'if' statement on line 2
s406902344
p02391
u409699893
1510737834
Python
Python
py
Runtime Error
0
0
115
a,b = map(int,raw_input()) if a > b: print ("a > b") elif a == b: print ("a == b") else print ("a > b")
File "/tmp/tmpd9y8qoyw/tmpofzj0cff.py", line 6 else ^ SyntaxError: expected ':'
s424346728
p02391
u409699893
1510737920
Python
Python
py
Runtime Error
0
0
109
a,b = map(int,raw_input()) if a > b: print 'a > b' elif a == b: print 'a == b' else print 'a > b'
File "/tmp/tmp5ncrvf6u/tmppy6g0fe2.py", line 3 print 'a > b' ^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s431669123
p02391
u409699893
1510737968
Python
Python
py
Runtime Error
0
0
118
a, b = map(int,raw_input().split()) if a > b: print 'a > b' elif a == b: print 'a == b' else print 'a > b'
File "/tmp/tmpmc_cmh_f/tmpnsx6ug5z.py", line 3 print 'a > b' ^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s961626029
p02391
u409699893
1510737994
Python
Python
py
Runtime Error
0
0
118
a, b = map(int,raw_input().split()) if a > b: print 'a > b' elif a == b: print 'a == b' else print 'a > b'
File "/tmp/tmpi80w2h5x/tmp0696gk8m.py", line 3 print 'a > b' ^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s947532594
p02391
u409699893
1510738071
Python
Python
py
Runtime Error
0
0
118
a, b = map(int,raw_input().split()) if a > b: print 'a > b' elif a == b: print 'a == b' else print 'a < b'
File "/tmp/tmp64hi6ojd/tmp3vih8fbr.py", line 3 print 'a > b' ^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s808784062
p02391
u409699893
1510738112
Python
Python
py
Runtime Error
0
0
116
a, b = map(int,raw_input().split()) if a > b: print 'a > b' if a == b: print 'a == b' else print 'a < b'
File "/tmp/tmph9gjxd7w/tmpicqbs9wh.py", line 3 print 'a > b' ^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s543867761
p02391
u409699893
1510738225
Python
Python
py
Runtime Error
0
0
119
a, b = map(int, raw_input().split()) if a > b: print 'a > b' elif a == b: print 'a == b' else print 'a < b'
File "/tmp/tmpc133yrt3/tmpk8k3a0k_.py", line 3 print 'a > b' ^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s552897907
p02391
u409699893
1510738302
Python
Python
py
Runtime Error
0
0
123
a, b = map(int, raw_input().split()) if a>b: ????print 'a > b' elif a<b: ????print 'a < b' elif a==b:???? print 'a == b'
File "/tmp/tmp7wztxm3w/tmpzs246jhc.py", line 4 ????print 'a > b' ^ IndentationError: expected an indented block after 'if' statement on line 3
s847461533
p02391
u409699893
1510738345
Python
Python
py
Runtime Error
0
0
119
a, b = map(int, raw_input().split()) if a>b: ????print 'a > b' if a<b: ????print 'a < b' if a==b:???? print 'a == b'
File "/tmp/tmpxmo_7j3i/tmpzyisudd1.py", line 4 ????print 'a > b' ^ IndentationError: expected an indented block after 'if' statement on line 3
s470956198
p02391
u409699893
1510738420
Python
Python
py
Runtime Error
0
0
119
a, b = map(int, raw_input().split()) if a>b: ????print "a > b" if a<b: ????print "a < b" if a==b:???? print "a == b"
File "/tmp/tmpk1a6mr_1/tmpqxgdhjgm.py", line 4 ????print "a > b" ^ IndentationError: expected an indented block after 'if' statement on line 3
s434556223
p02391
u409699893
1510738476
Python
Python
py
Runtime Error
0
0
119
a, b = map(int, raw_input().split()) if a>b: ????print "a > b" if a<b: ????print "a < b" if a==b:???? print "a == b"
File "/tmp/tmp9jsfx2z8/tmpmihgc5mg.py", line 4 ????print "a > b" ^ IndentationError: expected an indented block after 'if' statement on line 3
s652244206
p02391
u409699893
1510738510
Python
Python
py
Runtime Error
0
0
115
a, b = map(int, raw_input().split()) if a>b: print "a > b" if a<b: print "a < b" if a==b:???? print "a == b"
File "/tmp/tmpobm3wrv7/tmpmo7s7up6.py", line 4 print "a > b" ^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s955465621
p02391
u865281338
1510927709
Python
Python3
py
Runtime Error
0
0
200
def main () : a,b = [int(i) for i in input().split()] if a<b: print("a<b") elif a>b : print("a>b") else : print("a==b") if__name__=='__main__': main()
File "/tmp/tmpyzl937qd/tmpwytj2lcl.py", line 3 if a<b: ^ IndentationError: unindent does not match any outer indentation level
s233213786
p02391
u865281338
1510927782
Python
Python3
py
Runtime Error
0
0
200
def main () : a,b = [int(i) for i in input().split()] if a<b: print("a<b") elif a>b : print("a>b") else : print("a==b") if__name__=='__main__': main()
File "/tmp/tmpcilqwoka/tmpntnxh8bx.py", line 3 if a<b: ^ IndentationError: unindent does not match any outer indentation level
s495040398
p02391
u865281338
1510927966
Python
Python3
py
Runtime Error
0
0
212
def main () : a,b = [int(i) for i in input().split()] if a < b : print( "a < b") elif a > b : print("a > b") else : print("a == b") if__name__=='__main__': main()
File "/tmp/tmpce57qsue/tmp566lbhta.py", line 3 if a < b : ^ IndentationError: unindent does not match any outer indentation level
s845195395
p02391
u865281338
1510928254
Python
Python3
py
Runtime Error
0
0
213
def main () : a, b = [int(i) for i in input().split()] if a < b : print( "a < b") elif a > b : print("a > b") else : print("a == b") if __name__=='__main__': main()
File "/tmp/tmpriilqlqu/tmp2cdy1kx7.py", line 3 if a < b : ^ IndentationError: unindent does not match any outer indentation level
s848951382
p02391
u865281338
1510928329
Python
Python3
py
Runtime Error
0
0
213
def main () : a, b = [int(i) for i in input().split()] if a < b : print( "a < b") elif a > b : print("a > b") else : print("a == b") if __name__=='__main__': main()
File "/tmp/tmppb1f59iw/tmpee_cpnuh.py", line 3 if a < b : ^ IndentationError: unindent does not match any outer indentation level
s770524092
p02391
u947718497
1511517259
Python
Python
py
Runtime Error
0
0
188
import sys l = sys.stdin.readline() list = map(int, l.split()) a = list[0] b = list[1] if a > b: print("a > b" % (a, b)) elif a < b: print("a < b" % (a, b)) else: print("a == b" % (a, b))
Traceback (most recent call last): File "/tmp/tmpyxixmpl6/tmpzzbweomr.py", line 4, in <module> a = list[0] ~~~~^^^ TypeError: 'map' object is not subscriptable
s237079264
p02391
u183079216
1513322169
Python
Python3
py
Runtime Error
0
0
113
a,b = [int(x) for x in input()] if a<b: print("a < b") elif a>b: print("a > b") else: print("a == b")
Traceback (most recent call last): File "/tmp/tmpkj5e7t1e/tmplyeaqvqb.py", line 1, in <module> a,b = [int(x) for x in input()] ^^^^^^^ EOFError: EOF when reading a line
s573025579
p02391
u553951959
1513425776
Python
Python3
py
Runtime Error
0
0
116
num.split(" ") if num[0]<num[1]: print("a<b") if num[0]>num[1]: print("a>b") if num[0]==num[1]: print("a==b")
Traceback (most recent call last): File "/tmp/tmprijzpspg/tmp7phhct94.py", line 1, in <module> num.split(" ") ^^^ NameError: name 'num' is not defined. Did you mean: 'sum'?
s506266358
p02391
u830563109
1513449389
Python
Python3
py
Runtime Error
0
0
64
a = input() b = input() print(a < b) print(a > b) print(a == b)
Traceback (most recent call last): File "/tmp/tmpy74gt2tv/tmpra9mcosi.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s124456401
p02391
u830563109
1513449400
Python
Python3
py
Runtime Error
0
0
74
a = int(input()) b = int(input()) print(a < b) print(a > b) print(a == b)
Traceback (most recent call last): File "/tmp/tmpo8cwcc00/tmpp6uiomr8.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s138031351
p02391
u830563109
1513449565
Python
Python3
py
Runtime Error
0
0
98
a = int(input()) b = int(input()) if a < b: print(a,b) if a > b: print(a,b) if a == b: print(a,b)
File "/tmp/tmp9htq9w4j/tmp8ur__gnj.py", line 5 print(a,b) ^ IndentationError: expected an indented block after 'if' statement on line 4
s618401000
p02391
u810198868
1513696634
Python
Python3
py
Runtime Error
0
0
137
a, b = tuple([int(x) for x in input().split()]) if a < b: print("a < b") elif a > b: print("a > b") else print("a == b")
File "/tmp/tmp7ksgbqob/tmp521__3st.py", line 6 else ^ SyntaxError: expected ':'
s567405214
p02391
u179070318
1515912031
Python
Python3
py
Runtime Error
0
0
115
a,b = [int(x) for x input().split()] if a>b: print('a>b') elif a<b: print('a<b') else: print('a=b')
File "/tmp/tmphm72zsoo/tmp5a14627d.py", line 1 a,b = [int(x) for x input().split()] ^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s694229396
p02391
u179070318
1515912262
Python
Python3
py
Runtime Error
0
0
124
a,b = map(int,input().split( )) if a>b: print('a > b') elif a<b: print('a < b') else: a == b: print('a == b')
File "/tmp/tmpt_ll64w5/tmpkkhvfo2z.py", line 6 else: a == b: ^ SyntaxError: invalid syntax
s937719135
p02391
u640809202
1517660746
Python
Python3
py
Runtime Error
0
0
122
a, b = map(int, input().split()) if a > b: print("a > b") elif a == b: print("a == b") else print("a < b")
File "/tmp/tmpj960qy99/tmpxabzo2sl.py", line 9 else ^ SyntaxError: expected ':'
s691348289
p02391
u640809202
1517660805
Python
Python3
py
Runtime Error
0
0
120
a, b = map(int, input().split()) if a > b: print("a > b") elif a == b: print("a == b") else print("a < b")
File "/tmp/tmpn0nv0gc7/tmp0ar7l9u_.py", line 7 else ^ SyntaxError: expected ':'
s512790420
p02391
u640809202
1517661103
Python
Python3
py
Runtime Error
0
0
119
s=input().split() a=s[0] b=s[1] if a > b: print("a > b") elif a == b: print("a == b") else print("a < b")
File "/tmp/tmp2t__q2c5/tmp0_ururue.py", line 9 else ^ SyntaxError: expected ':'
s405470639
p02391
u139687801
1517681232
Python
Python3
py
Runtime Error
0
0
118
a,b = input().split(',') if a==b: print ('a == b') elif a > b: print ('a > b') else: print ('a < b')
Traceback (most recent call last): File "/tmp/tmpqxfr2e9d/tmpttf8_ni9.py", line 1, in <module> a,b = input().split(',') ^^^^^^^ EOFError: EOF when reading a line
s030843770
p02391
u613627875
1518153777
Python
Python3
py
Runtime Error
0
0
120
a,b = (int(x) for x in input().split()) if a > b: print("a > b") elif a < b: print("a < b") else print("a == b")
File "/tmp/tmpm26gbl7d/tmpdx5_sip3.py", line 7 else ^ SyntaxError: expected ':'
s529971913
p02391
u555852413
1518430340
Python
Python3
py
Runtime Error
0
0
130
import sys a,b = map(int(sys.stdin.readline().split())) if a < b: print("a < b") elif a > b: print("a > b") else: print("a == b")
File "/tmp/tmp2v_hlr3g/tmptq5igmh8.py", line 4 print("a < b") ^ IndentationError: expected an indented block after 'if' statement on line 3
s454023951
p02391
u613534067
1520130072
Python
Python3
py
Runtime Error
0
0
116
a, b = map(int, input().split()) if(a<b): print("a < b") elif(a>b): print("a > b") else print("a == b")
File "/tmp/tmptvpey3_p/tmp7z9dbjhw.py", line 6 else ^ SyntaxError: expected ':'
s837191580
p02391
u005739171
1520173621
Python
Python3
py
Runtime Error
0
0
114
a, b = map(int, input().split()) if a > b : print("a > b") elif a = b: print("a == b") else : print("a < b")
File "/tmp/tmpj5zl36oq/tmpr2d7fayz.py", line 5 elif a = b: ^^^^^ SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
s043567017
p02391
u017435045
1520680424
Python
Python3
py
Runtime Error
0
0
110
a,b=map(int, input().split()) if a>b: print(‘a>b’) elif a<b: print(‘a<b’) else: print(‘a==b’)
File "/tmp/tmpkdogv7od/tmprxzb6ah5.py", line 4 print(‘a>b’) ^ SyntaxError: invalid character '‘' (U+2018)
s662412108
p02391
u017435045
1520680490
Python
Python3
py
Runtime Error
0
0
116
a,b=map(int, input().split()) if a>b: print(‘a > b’) elif a<b: print(‘a < b’) else: print(‘a == b’)
File "/tmp/tmpop2rkgwf/tmprptcuz6h.py", line 4 print(‘a > b’) ^ SyntaxError: invalid character '‘' (U+2018)
s294592336
p02391
u017435045
1520680513
Python
Python3
py
Runtime Error
0
0
116
a,b=map(int, input().split()) if a>b: print(‘a > b’) elif a<b: print(‘a < b’) else: print(‘a == b’)
File "/tmp/tmpy4so2kri/tmpx4lz_rvk.py", line 4 print(‘a > b’) ^ SyntaxError: invalid character '‘' (U+2018)
s838730722
p02391
u507758132
1521096206
Python
Python3
py
Runtime Error
0
0
163
a,b = list(map(int,input().split()) if a > b: print(">".join(map(str,[a,b]))) elsif a < b: print("<".join(map(str,[a,b]))) else: print("=".join(map(str,[a,b])))
File "/tmp/tmpwgb5i_0c/tmp1wd436rp.py", line 1 a,b = list(map(int,input().split()) ^ SyntaxError: '(' was never closed
s070907381
p02391
u507758132
1521096280
Python
Python3
py
Runtime Error
0
0
162
a,b = list(map(int,input().split()) if a > b: print(">".join(map(str,[a,b]))) elif a < b: print("<".join(map(str,[a,b]))) else: print("=".join(map(str,[a,b])))
File "/tmp/tmpssyide_0/tmppjuagvqq.py", line 1 a,b = list(map(int,input().split()) ^ SyntaxError: '(' was never closed
s881402407
p02391
u507758132
1521096317
Python
Python3
py
Runtime Error
0
0
163
a,b = list(map(int,input().split())) if a > b: print(">".join(map(str,[a,b]))) elif a < b: print("<".join(map(str,[a,b]))) else: print("=".join(map(str,[a,b])))
File "/tmp/tmppz9e781v/tmpn6_fm51b.py", line 4 print(">".join(map(str,[a,b]))) ^ IndentationError: expected an indented block after 'if' statement on line 3
s264775108
p02391
u566311709
1521120924
Python
Python3
py
Runtime Error
0
0
128
l = map(int, input().split()) if l[0] > l[1]: print("a > b") elif l[0] < l[1]: print("a < b") else: print("a == b")
Traceback (most recent call last): File "/tmp/tmpemye6rc7/tmp888ze0rz.py", line 1, in <module> l = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s472525360
p02391
u566311709
1521121038
Python
Python3
py
Runtime Error
0
0
122
l = map(int, input().split()) if l[0] > l[1]: print("a > b") elif l[0] < l[1]: print("a < b") else: print("a == b")
Traceback (most recent call last): File "/tmp/tmp1o5pbx2i/tmphfdoz1rj.py", line 1, in <module> l = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s464348978
p02391
u443563674
1521282254
Python
Python3
py
Runtime Error
0
0
389
#!/usr/bin/env python # coding: utf-8 # def main(x): a = x[0] b = x[1] if a < b: print('a < b') return elif a > b: print('a > b') return else: print('a == b') return if '__main__' == __name__: try: while True: main(list(map(int, input().strip()))) except EOFError: pass
s483064796
p02391
u650022417
1521528546
Python
Python
py
Runtime Error
0
0
176
a, b = map(float, input().split()) if a > b: print(str(a) + ' > ' + str(b)) elif a < b: print(str(a) + ' < ' + str(b)) elif a == b: print(str(a) + ' == ' + str(b))
Traceback (most recent call last): File "/tmp/tmpoxj1vv2p/tmp0eqs_iax.py", line 1, in <module> a, b = map(float, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s391788591
p02391
u621084859
1522372129
Python
Python3
py
Runtime Error
0
0
113
c=input().split a=int(c) b=int(c) if a>b: print('a > b') elif a<b: print('a < b') else: print('a == b')
Traceback (most recent call last): File "/tmp/tmpxevbu6o2/tmp97ooet_3.py", line 1, in <module> c=input().split ^^^^^^^ EOFError: EOF when reading a line
s019989089
p02391
u621084859
1522374354
Python
Python3
py
Runtime Error
0
0
119
c=input().split() a=int(c) b=int(c) if a > b: print("a > b") elif a < b: print("a < b") else: print("a == b")
Traceback (most recent call last): File "/tmp/tmphai6j9l7/tmpa1nyhx1l.py", line 1, in <module> c=input().split() ^^^^^^^ EOFError: EOF when reading a line
s881716899
p02391
u621084859
1522375567
Python
Python3
py
Runtime Error
0
0
63
a=int(input()) for i in range(a): print("Hello World")
File "/tmp/tmpzpcex1ol/tmpqt1xju1c.py", line 2 for i in range(a): IndentationError: unexpected indent
s629322527
p02391
u621084859
1522377182
Python
Python3
py
Runtime Error
0
0
113
a=int(input()) b=int(input()) if a > b: print("a > b") elif a < b: print("a < b") else: print("a == b")
Traceback (most recent call last): File "/tmp/tmpbr8fw1s3/tmpvsy_kt03.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s159036552
p02391
u621084859
1522377430
Python
Python3
py
Runtime Error
0
0
103
a=int(input()) b=int(input()) if a > b: print("a > b") elif a < b: print("a < b") else: print("a == b"
File "/tmp/tmponuikqx8/tmpd5orocbf.py", line 4 print("a > b") ^ IndentationError: expected an indented block after 'if' statement on line 3
s869675979
p02391
u621084859
1522381944
Python
Python3
py
Runtime Error
0
0
112
a=int(input()) b=int(input()) if a > b: print("a > b") elif a < b: print("a < b") else: print("a == b")
Traceback (most recent call last): File "/tmp/tmpexodz9l9/tmp0av81bvk.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s426241084
p02391
u621084859
1522381986
Python
Python3
py
Runtime Error
0
0
115
a=int(input()) b=int(input()) if a > b: print("a > b") elif a < b: print("a < b") else: print("a == b")
Traceback (most recent call last): File "/tmp/tmp2mco10j_/tmpnr6ttoou.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s502854925
p02391
u782670949
1522966068
Python
Python3
py
Runtime Error
0
0
119
a,b = map(int, input().sprit()) if a > b: print("a > b") elif a < b: print("a < b") else: print("a == b")
Traceback (most recent call last): File "/tmp/tmp4h9qgno5/tmpdri9l6qf.py", line 1, in <module> a,b = map(int, input().sprit()) ^^^^^^^ EOFError: EOF when reading a line
s120227053
p02391
u244493040
1523185545
Python
Python3
py
Runtime Error
0
0
58
a,b,c=map(int,input().split()) print(['No','Yes'][a<b<c])
Traceback (most recent call last): File "/tmp/tmpfjcy5rbj/tmpdf9c8qkb.py", line 1, in <module> a,b,c=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s897711176
p02391
u781194524
1523335676
Python
Python3
py
Runtime Error
0
0
117
a,b=[int(x) for x in input().split()] if a > b: print('a > b') else if a = b: print('a = b') else: print('a < b')
File "/tmp/tmpe0b7i6n0/tmpftwghy89.py", line 4 else if a = b: ^^ SyntaxError: expected ':'
s070257024
p02391
u781194524
1523335739
Python
Python3
py
Runtime Error
0
0
119
a,b=[int(x) for x in input().split()] if a > b: print('a > b') else if a == b: print('a == b') else: print('a < b')
File "/tmp/tmpgywiv1b0/tmp3z2wftdg.py", line 4 else if a == b: ^^ SyntaxError: expected ':'
s416608051
p02391
u781194524
1523335804
Python
Python3
py
Runtime Error
0
0
117
a,b=[int(x) for x in input().split()] if a > b: print(a '>' b) else if a = b: print(a '=' b) else: print(a '<' b)
File "/tmp/tmp1pxqel85/tmpnbk5gutb.py", line 3 print(a '>' b) ^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s413029304
p02391
u781194524
1523336031
Python
Python3
py
Runtime Error
0
0
166
a,b=[int(x) for x in input().split()] if a > b: print('{0} > {1}'.format(a,b)) else if a = b: print('{0} == {1}'.format(a,b)) else: print('{0} < {1}'.format(a,b))
File "/tmp/tmp06cyonko/tmp62n19t6z.py", line 4 else if a = b: ^^ SyntaxError: expected ':'
s313249765
p02391
u781194524
1523336148
Python
Python3
py
Runtime Error
0
0
130
a,b=[int(x) for x in input().split()] if a > b: print(a + '>' + b) else if a = b: print(a + '==' + b) else: print(a + '<' + b)
File "/tmp/tmpw4os7mnw/tmp9x1v6exz.py", line 4 else if a = b: ^^ SyntaxError: expected ':'
s313992536
p02391
u781194524
1523336672
Python
Python3
py
Runtime Error
0
0
118
a,b=[int(x) for x in input().split()] if a > b: print("a > b") else if a = b: print("a == b") else: print("a < b")
File "/tmp/tmppsymfvnn/tmpnp3o20kg.py", line 4 else if a = b: ^^ SyntaxError: expected ':'
s615700355
p02391
u781194524
1523336760
Python
Python3
py
Runtime Error
0
0
144
a, b = map(int,raw_input().split()) if a<b: print "a < b" elif a>b: print "a > b" elif a==b: print "a == b" else: print "none"
File "/tmp/tmpdshr3tz2/tmpsq0b4y7f.py", line 4 print "a < b" ^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s259245881
p02391
u781194524
1523337094
Python
Python
py
Runtime Error
0
0
116
a,b=[int(x) for x in input().split()] if a > b : print('a>b') if a == b : print('a==b') if a < b: print('a < b')
Traceback (most recent call last): File "/tmp/tmp3ic6yxbx/tmpxkjlolz9.py", line 1, in <module> a,b=[int(x) for x in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s114726963
p02391
u781194524
1523337248
Python
Python
py
Runtime Error
0
0
117
a,b=[int(x) for x in input().split()] if a > b : print('a > b') elif a == b : print('a == b') else print('a < b')
File "/tmp/tmpb_h1qcqt/tmpcg4gfdez.py", line 6 else ^ SyntaxError: expected ':'
s600700628
p02391
u843169619
1523435470
Python
Python3
py
Runtime Error
0
0
181
line = int(input()) a = line[0] b = line[1] if a == b: print(str(a) + ' == ' + str(b)) elif a > b: print(str(a) + ' > ' + str(b)) else: print(str(a) + ' < ' + str(b))
Traceback (most recent call last): File "/tmp/tmpsx0_pzu3/tmpx9cy6psr.py", line 1, in <module> line = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s380223964
p02391
u843169619
1523868357
Python
Python3
py
Runtime Error
0
0
148
list = input().split l = list(map(int,list)) a =l[0] b =l[1] if a < b: print('a < b') elif a > b: print('a > b') else: print('a == b'
File "/tmp/tmpgudurj_1/tmpssz5cv2r.py", line 12 print('a == b' ^ SyntaxError: '(' was never closed
s396097236
p02391
u843169619
1523868370
Python
Python3
py
Runtime Error
0
0
149
list = input().split l = list(map(int,list)) a =l[0] b =l[1] if a < b: print('a < b') elif a > b: print('a > b') else: print('a == b')
Traceback (most recent call last): File "/tmp/tmpn3f26943/tmppfo_vg0s.py", line 2, in <module> list = input().split ^^^^^^^ EOFError: EOF when reading a line
s149475592
p02391
u648117624
1524198222
Python
Python3
py
Runtime Error
0
0
103
a, b = int(input()) if a < b: print(a < b) elif a > b: print(a > b) else: print(a == b)
Traceback (most recent call last): File "/tmp/tmp6cenrc45/tmpqx7ucc4q.py", line 1, in <module> a, b = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s914028156
p02391
u648117624
1524198247
Python
Python3
py
Runtime Error
0
0
109
a, b = int(input()) if a < b: print("a < b") elif a > b: print("a > b") else: print("a == b")
Traceback (most recent call last): File "/tmp/tmp48usz38h/tmpmbav26wt.py", line 1, in <module> a, b = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s275345083
p02391
u648117624
1524198295
Python
Python3
py
Runtime Error
0
0
118
a, b = int(input().split()) if a < b: print("a < b") elif a > b: print("a > b") else: print("a == b")
Traceback (most recent call last): File "/tmp/tmpxfpbwych/tmp1i9p5rhc.py", line 1, in <module> a, b = int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s283212439
p02391
u648117624
1524198320
Python
Python3
py
Runtime Error
0
0
118
a, b = int(input()).split() if a < b: print("a < b") elif a > b: print("a > b") else: print("a == b")
Traceback (most recent call last): File "/tmp/tmpbuagy6wb/tmpg4u3zdze.py", line 1, in <module> a, b = int(input()).split() ^^^^^^^ EOFError: EOF when reading a line
s870495144
p02391
u648117624
1524198515
Python
Python3
py
Runtime Error
0
0
122
a, b = map(int(input().split()) if a < b: print("a < b") elif a > b: print("a > b") else: print("a == b")
File "/tmp/tmp90jhj6ja/tmp4g93k6ma.py", line 1 a, b = map(int(input().split()) ^ SyntaxError: '(' was never closed
s189105331
p02391
u074747865
1524472360
Python
Python3
py
Runtime Error
0
0
101
a,b=map(int,input().split()) if a<b: print(a < b) elif a>b: print(a > b) else a==b: print(a == b)
File "/tmp/tmp_09cvlbn/tmpec14s2ds.py", line 6 else a==b: ^ SyntaxError: expected ':'
s682230937
p02391
u729486845
1524582602
Python
Python
py
Runtime Error
0
0
156
# ITP1_2_A num = input() a,b = num.split() a = int(a) b = int(b) if a < b : print('a < b') elif a > b : print('a > b') else: print('a == b')
Traceback (most recent call last): File "/tmp/tmpaojq5tzb/tmpsndgh00o.py", line 3, in <module> num = input() ^^^^^^^ EOFError: EOF when reading a line
s604149082
p02391
u876060624
1524664031
Python
Python3
py
Runtime Error
0
0
111
a,b =int(input().split()) if a < b: c = '<' elif a > b : c = '>' else: c = '==' print('a %s b'%c)
Traceback (most recent call last): File "/tmp/tmph0lo9i0k/tmph57007vv.py", line 1, in <module> a,b =int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s471686378
p02391
u876060624
1524664084
Python
Python3
py
Runtime Error
0
0
106
a,b =int(input().split()) if a < b: print('a < b') elif a > b : print('a > b') else: print('a == b')
Traceback (most recent call last): File "/tmp/tmpvwzplqmt/tmptazs6xhs.py", line 1, in <module> a,b =int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s428642762
p02391
u533681846
1525348097
Python
Python3
py
Runtime Error
0
0
113
a.b = map(int,input().split()) if a<b: print("a < b") elif a>b: print("a > b") else: print("a == b")
Traceback (most recent call last): File "/tmp/tmpqfphskaf/tmpho1z5prh.py", line 1, in <module> a.b = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s026168037
p02391
u500257793
1525428534
Python
Python3
py
Runtime Error
0
0
107
a=int(input()) b=int(input()) if a==b: print("a==b") elif a>b: pritf("a>b") else: print("a<b")
Traceback (most recent call last): File "/tmp/tmpk46r729z/tmpap31amnm.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s021635744
p02391
u532590372
1525484902
Python
Python3
py
Runtime Error
0
0
133
x = input().split(" ") a = int(x[0]) b = int(x[1]) if a > b: put("a > b") elif a < b: put("a < b") else: put("a == b")
Traceback (most recent call last): File "/tmp/tmp0mt72ea6/tmpq4toqvlj.py", line 1, in <module> x = input().split(" ") ^^^^^^^ EOFError: EOF when reading a line
s499225312
p02391
u532590372
1525484972
Python
Python3
py
Runtime Error
0
0
131
x = input().split(" ") a = int(x[0]) b = int(x[1]) if a > b: put("a > b") if a < b: put("a < b") else: put("a == b")
Traceback (most recent call last): File "/tmp/tmp7np37nia/tmppraiky_t.py", line 1, in <module> x = input().split(" ") ^^^^^^^ EOFError: EOF when reading a line
s853095576
p02391
u532590372
1525485078
Python
Python3
py
Runtime Error
0
0
131
x = input().split(" ") a = int(x[0]) b = int(x[1]) if a > b: put("a > b") if a < b: put("a < b") else: put("a == b")
Traceback (most recent call last): File "/tmp/tmp3edgy7on/tmp5dnf13fu.py", line 1, in <module> x = input().split(" ") ^^^^^^^ EOFError: EOF when reading a line
s061441109
p02391
u532590372
1525485466
Python
Python3
py
Runtime Error
0
0
179
x = input().split(' ') a = int(x[0]) b = int(x[1]) if a > b: print('a > b') elif a < b: print('a < b') else: print('a == b')
File "/tmp/tmppxbf20zm/tmpcwdq3h26.py", line 1 x = input().split(' ') IndentationError: unexpected indent
s577049378
p02391
u455935767
1526021702
Python
Python3
py
Runtime Error
0
0
112
a = input() b = input() if a<b: print('a < b') elif a>b: print('a > b') elif a==b: printf('a == b')
Traceback (most recent call last): File "/tmp/tmpg1c72ans/tmp7xwx5cmu.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s302908489
p02391
u455935767
1526022142
Python
Python3
py
Runtime Error
20
5592
154
st = input() stin = st.split() a = int(stin[0]) b = int(stin[1]) if a<b: print('a < b') elif a>b: print('a > b') elif a==b: printf('a == b')
Traceback (most recent call last): File "/tmp/tmpo640rudd/tmpcm36dyu4.py", line 1, in <module> st = input() ^^^^^^^ EOFError: EOF when reading a line
s254283524
p02391
u527389300
1526617130
Python
Python3
py
Runtime Error
0
0
134
l = map(int, raw_input().split()) if l[0] == l[1]: print('a == b') elif l[0] < l[1]: print('a < b') else print('a > b')
File "/tmp/tmpx0o4dvgs/tmpxzsbmqy1.py", line 7 else ^ SyntaxError: expected ':'
s112910760
p02391
u527389300
1526617192
Python
Python3
py
Runtime Error
0
0
136
l = map(int, raw_input().split()) if l[0] == l[1]: print('a == b') elif l[0] < l[1]: print('a < b') else: print('a > b')
Traceback (most recent call last): File "/tmp/tmp22tx9grx/tmpbqga9zk4.py", line 1, in <module> l = map(int, raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s606812566
p02391
u527389300
1526617267
Python
Python3
py
Runtime Error
0
0
136
l = map(int, raw_input().split()) if l[0] == l[1]: print('a == b') elif l[0] < l[1]: print('a < b') else: print('a > b')
Traceback (most recent call last): File "/tmp/tmp8c4stvf1/tmpzv2_y_d3.py", line 1, in <module> l = map(int, raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s063273132
p02391
u500257793
1526806459
Python
Python3
py
Runtime Error
0
0
98
a,b=map(int,input(),split()) if a==b: print("a==b") elif a<b: print("a<b") else: print("a>b")
Traceback (most recent call last): File "/tmp/tmp2pwsxvzy/tmpl4ke1f5f.py", line 1, in <module> a,b=map(int,input(),split()) ^^^^^^^ EOFError: EOF when reading a line
s099767383
p02391
u944658202
1527226153
Python
Python3
py
Runtime Error
0
0
102
a=input() b=input() if a<b: print("a < b") elif a>b: print("a > b") else: print("a == b")
Traceback (most recent call last): File "/tmp/tmphccfjgjm/tmpjuj3eve8.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s823867324
p02391
u944658202
1527226240
Python
Python3
py
Runtime Error
0
0
116
a=raw_input().split() if a[0]<a[1]: print("a < b") elif a[0]>a[1]: print("a > b") else: print("a == b")
Traceback (most recent call last): File "/tmp/tmpen5zx4ef/tmpetskmiap.py", line 1, in <module> a=raw_input().split() ^^^^^^^^^ NameError: name 'raw_input' is not defined
s940272199
p02391
u944658202
1527226348
Python
Python3
py
Runtime Error
0
0
117
a=int(input().split()) if a[0]<a[1]: print("a < b") elif a[0]>a[1]: print("a > b") else: print("a == b")
Traceback (most recent call last): File "/tmp/tmpwil5ml6c/tmpxgv_waqc.py", line 1, in <module> a=int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s209772626
p02391
u944658202
1527226362
Python
Python3
py
Runtime Error
0
0
117
a=int(input()).split() if a[0]<a[1]: print("a < b") elif a[0]>a[1]: print("a > b") else: print("a == b")
Traceback (most recent call last): File "/tmp/tmpvnz2wkvb/tmpxd_zprc2.py", line 1, in <module> a=int(input()).split() ^^^^^^^ EOFError: EOF when reading a line