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
s744693225
p02391
u184749404
1540384817
Python
Python3
py
Runtime Error
0
0
122
a,b =map(int.(i) for i in input.split()) if a > b: print("a > b") elif a == b: print("a == b") else : print("a < b")
File "/tmp/tmpmffxtm__/tmpi17u92g1.py", line 1 a,b =map(int.(i) for i in input.split()) ^ SyntaxError: invalid syntax
s047110872
p02391
u184749404
1540385440
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")
Traceback (most recent call last): File "/tmp/tmp6gg28sgo/tmpqmxgfv16.py", line 1, in <module> a,b =map(int, input.split()) ^^^^^^^^^^^ AttributeError: 'builtin_function_or_method' object has no attribute 'split'
s306283158
p02391
u316584871
1540858090
Python
Python3
py
Runtime Error
0
0
214
#include<stdio.h> main(){ int a,b; scanf("%d %d",&a,&b); if (a<b){ printf("a < b\n"); } else if (a > b){ printf("a > b\n"); } else { printf("a == b\n"); } }
File "/tmp/tmpxu_nms3u/tmp1fmgjcga.py", line 4 int a,b; ^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s953194637
p02391
u316584871
1540859762
Python
Python3
py
Runtime Error
0
0
265
#include<stdio.h> int main(){ int a,b; scanf("%d %d",&a,&b); if (a<b) { printf("a < b"); } else if (a > b){ printf("a > b"); } else if (a == b) { printf("a == b"); } printf("\n"); return 0; }
File "/tmp/tmphwphhp4r/tmp5_cd8qag.py", line 3 int main(){ ^^^^ SyntaxError: invalid syntax
s570688656
p02391
u293957970
1541217833
Python
Python3
py
Runtime Error
0
0
122
a,b = map(int,input().spilit()) if a > b : op = ">" elif a < b: op = "<" else: op = "==" print("a %s b"%op)
Traceback (most recent call last): File "/tmp/tmp3eyko4b_/tmp15wutnrl.py", line 2, in <module> a,b = map(int,input().spilit()) ^^^^^^^ EOFError: EOF when reading a line
s298982509
p02391
u293957970
1541217886
Python
Python3
py
Runtime Error
0
0
120
a,b = map(int,input().spilit()) if a > b: op = ">" elif a < b: op = "<" else: op = "==" print("a %s b"%op)
Traceback (most recent call last): File "/tmp/tmpek60skyk/tmpupanax7w.py", line 1, in <module> a,b = map(int,input().spilit()) ^^^^^^^ EOFError: EOF when reading a line
s814191881
p02391
u293957970
1541218130
Python
Python3
py
Runtime Error
0
0
120
a,b = map(int,input().spilit()) if a > b: op = '>' elif a < b: op = '<' else: op = '==' print("a %s b"%op)
Traceback (most recent call last): File "/tmp/tmpdpj50fg_/tmpkfnk4bnn.py", line 1, in <module> a,b = map(int,input().spilit()) ^^^^^^^ EOFError: EOF when reading a line
s448200337
p02391
u266788078
1545315668
Python
Python3
py
Runtime Error
0
0
121
A,B =map(int,input().split()) if A-B == 0: print(A+"=="+B) elif A > B: print(A+">"+B) print(A+"<"+B)
File "/tmp/tmpaqq9vksf/tmprhkbz2dp.py", line 4 elif A > B: ^^^^ SyntaxError: invalid syntax
s181221876
p02391
u266788078
1545315699
Python
Python3
py
Runtime Error
0
0
114
A,B =map(int,input().split()) if A-B == 0: print(A+"=="+B) elif A >= B: print(A+">"+B) print(A+"<"+B)
Traceback (most recent call last): File "/tmp/tmprqfd00ou/tmp9p1xvv9_.py", line 1, in <module> A,B =map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s315210983
p02391
u266788078
1545315750
Python
Python3
py
Runtime Error
0
0
120
A,B =map(int,input().split()) if A-B == 0: print(A+"=="+B) elif A >= B: print(A+">"+B) else: print(A+"<"+B)
Traceback (most recent call last): File "/tmp/tmp81qxosg3/tmpzva1kyqc.py", line 1, in <module> A,B =map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s429515885
p02391
u266788078
1545315790
Python
Python3
py
Runtime Error
0
0
114
A,B =map(int,input().split()) if A-B == 0: print(A"=="B) elif A >= B: print(A">"B) else: print(A"<"B)
File "/tmp/tmpjmh8cvxe/tmp_fsz5zsf.py", line 3 print(A"=="B) ^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s305311310
p02391
u266788078
1545315912
Python
Python3
py
Runtime Error
0
0
112
A,B =map(int,input()) if A-B == 0: print(A,"==",B) elif A >= B: print(A,">",B) else: print(A,"<",B)
Traceback (most recent call last): File "/tmp/tmpegdzt12q/tmpr_liuf8o.py", line 1, in <module> A,B =map(int,input()) ^^^^^^^ EOFError: EOF when reading a line
s175536273
p02391
u638889288
1545578534
Python
Python3
py
Runtime Error
0
0
101
a=int(input()) b=int(input()) if a>b: print('a > b') elif a<b: print('a < b') else : print('a=b')
File "/tmp/tmpcraqqa9b/tmpqs8ga5n0.py", line 5 print('a > b') ^ IndentationError: expected an indented block after 'if' statement on line 4
s583300712
p02391
u638889288
1545578775
Python
Python3
py
Runtime Error
0
0
110
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/tmpi0m5y5rj/tmpp8e4e0sc.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s476082204
p02391
u638889288
1545578870
Python
Python3
py
Runtime Error
0
0
110
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/tmpkndem87v/tmphx24oguy.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s692573810
p02391
u316246166
1545645975
Python
Python3
py
Runtime Error
0
0
120
a, b = int(input()) if(a > b); print('a > b') if(a < b); print('a < b') if(a == b); print('a == b')
File "/tmp/tmppypdavrf/tmpl464x6hg.py", line 3 if(a > b); ^ SyntaxError: invalid syntax
s274516830
p02391
u316246166
1545646316
Python
Python3
py
Runtime Error
0
0
116
a, b = int(input()) if(a > b); print('a > b') if(a < b); print('a < b') if(a == b); print('a == b')
File "/tmp/tmp8x3499dw/tmpfztkt4ed.py", line 3 if(a > b); ^ SyntaxError: invalid syntax
s792713283
p02391
u316246166
1545646384
Python
Python3
py
Runtime Error
0
0
113
a, b = int(input()) if a > b; print('a > b') if a < b; print('a < b') if a == b; print('a == b')
File "/tmp/tmpq4uk17rv/tmpzcoszz3b.py", line 3 if a > b; ^ SyntaxError: invalid syntax
s013991391
p02391
u316246166
1545646429
Python
Python3
py
Runtime Error
0
0
113
a, b = int(input()) 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/tmpr83iso5r/tmprgku6tmi.py", line 1, in <module> a, b = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s220185640
p02391
u316246166
1545646516
Python
Python3
py
Runtime Error
0
0
121
a, b = int(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/tmpw18cvyzk/tmp3ybmzi07.py", line 1, in <module> a, b = int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s220920639
p02391
u962909487
1545813098
Python
Python3
py
Runtime Error
0
0
104
a,b = map(int(input().split()) if a>b print(a+'<'+b) if a<b print(a+'>'+b) else print(a+'='+b)
File "/tmp/tmp2ko152ad/tmp34pfpzem.py", line 1 a,b = map(int(input().split()) ^ SyntaxError: '(' was never closed
s207014234
p02391
u643542669
1545836888
Python
Python3
py
Runtime Error
0
0
119
a, b = map(int, input().split()) if a > b: print("a > b" elif a < b: print("a < b") else: print("a == b")
File "/tmp/tmpsqajlpyv/tmpfrz8pbdq.py", line 3 print("a > b" ^ SyntaxError: '(' was never closed
s474304056
p02391
u498462680
1546087478
Python
Python3
py
Runtime Error
0
0
109
a,b = input().split() if a>b: print("a > b") else if a==b: print("a == b") else: print("a < b")
File "/tmp/tmpv5mxhgyq/tmpuax8p3e4.py", line 5 else if a==b: ^^ SyntaxError: expected ':'
s794502503
p02391
u498462680
1546087567
Python
Python3
py
Runtime Error
0
0
111
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/tmpfr7tum99/tmp7c_v3u55.py", line 1, in <module> a,b = int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s662005117
p02391
u984892564
1551534912
Python
Python3
py
Runtime Error
0
0
142
string = input() a, b = input().split(' ') if (a > b): print('a > b') elif (a < b): print('a < b') else (a == b): print('a == b')
File "/tmp/tmpw6_9wx00/tmpn6eonna7.py", line 7 else (a == b): ^ SyntaxError: expected ':'
s667691498
p02391
u984892564
1551534998
Python
Python3
py
Runtime Error
0
0
129
string = input() 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/tmps5u3gbd4/tmphqxku222.py", line 1, in <module> string = input() ^^^^^^^ EOFError: EOF when reading a line
s612013810
p02391
u525395303
1555910522
Python
Python3
py
Runtime Error
0
0
3
ko
Traceback (most recent call last): File "/tmp/tmppoh8p45y/tmpz6z1cu6b.py", line 1, in <module> ko NameError: name 'ko' is not defined
s522268400
p02391
u997476941
1555910626
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/tmpw021cy76/tmp7y5xzbiw.py", line 4 print "a < b" ^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s155653277
p02391
u114860785
1555910989
Python
Python3
py
Runtime Error
0
0
118
int(input("")) = a int(input("")) = b if a>b print("a > b") else if a<b print("a < b") else; print("a == b")
File "/tmp/tmp880iggye/tmpki8q7wbc.py", line 1 int(input("")) = a ^^^^^^^^^^^^^^ SyntaxError: cannot assign to function call here. Maybe you meant '==' instead of '='?
s986892758
p02391
u468794560
1555912002
Python
Python3
py
Runtime Error
0
0
121
x, y = map(int, input(). split()) if x < y: print('x < y') elif x == y: print('x == y') else: pass
File "/tmp/tmpuc9elcn2/tmpq12inwir.py", line 1 x, y = map(int, input(). split()) IndentationError: unexpected indent
s804256249
p02391
u468794560
1555912020
Python
Python3
py
Runtime Error
0
0
121
x, y = map(int, input(). split()) if x < y: print('x < y') elif x == y: print('x == y') else: pass
File "/tmp/tmppporb115/tmp2iqsyvsw.py", line 1 x, y = map(int, input(). split()) IndentationError: unexpected indent
s723409932
p02391
u468794560
1555912061
Python
Python3
py
Runtime Error
0
0
121
x, y = map(int, input(). split()) if x < y: print('x < y') elif x == y: print('x == y') else: pass
File "/tmp/tmp0qqyh8hs/tmpay3f6sc4.py", line 1 x, y = map(int, input(). split()) IndentationError: unexpected indent
s108435212
p02391
u678843586
1555912575
Python
Python3
py
Runtime Error
0
0
115
a, b = map(int, input().split()) if a < b : print('a < b') elif a > b : print('a > b') else: print('a == b'
File "/tmp/tmpv17de28g/tmpdweo2e2h.py", line 8 print('a == b' ^ SyntaxError: '(' was never closed
s461386309
p02391
u678843586
1555912817
Python
Python3
py
Runtime Error
0
0
116
a, b = map(int, input().split()) if a < b : print('a < b') else a > b : print('a > b') else: print('a == b')
File "/tmp/tmprvdukhc4/tmpa_83enp3.py", line 5 else a > b : ^ SyntaxError: expected ':'
s115515662
p02391
u651717882
1555942112
Python
Python3
py
Runtime Error
0
0
159
a = int(input()) b = int(input()) A = -1000<= a <= 0, 0< b <= 1000 B = 0<= a, 0>b C = a==b if A: print(a<b) elif B: print(a>b) elif C: print(a=b)
Traceback (most recent call last): File "/tmp/tmphwt_8wmv/tmpe9ycq932.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s359713154
p02391
u651717882
1555942401
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") elif a==b: print("a==b")
Traceback (most recent call last): File "/tmp/tmpu_s1ns0t/tmptjqgkc89.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s448412987
p02391
u651717882
1555942441
Python
Python3
py
Runtime Error
0
0
111
a = int(input()) b = int(input()) 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/tmp6qr596hs/tmplag6itni.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s033367187
p02391
u651717882
1555942663
Python
Python3
py
Runtime Error
0
0
109
a,b = int(),input().split() if a<b: print("a<b") elif a>b: print("a>b") elif a==b: print("a==b")
Traceback (most recent call last): File "/tmp/tmpxl3nh8nz/tmpjuo4lqw3.py", line 1, in <module> a,b = int(),input().split() ^^^^^^^ EOFError: EOF when reading a line
s778017639
p02391
u651717882
1555942719
Python
Python3
py
Runtime Error
0
0
115
a,b = int(),input().split() if a < b: print("a<b") elif a > b: print("a>b") else a == b: print("a==b")
File "/tmp/tmp6subpx8m/tmpi1ukku4c.py", line 6 else a == b: ^ SyntaxError: expected ':'
s921797346
p02391
u651717882
1555942743
Python
Python3
py
Runtime Error
0
0
121
a,b = int(),input().split() if a < b: print("a < b") elif a > b: print("a > b") else a == b: print("a == b")
File "/tmp/tmpq8odkyzx/tmpbir0f7ug.py", line 6 else a == b: ^ SyntaxError: expected ':'
s941558897
p02391
u651717882
1555942758
Python
Python3
py
Runtime Error
0
0
121
a,b = int(),input().split() if a < b: print("a < b") elif a > b: print("a > b") elif a == b: print("a == b")
Traceback (most recent call last): File "/tmp/tmpkz25sfw2/tmp17hs08op.py", line 1, in <module> a,b = int(),input().split() ^^^^^^^ EOFError: EOF when reading a line
s273703316
p02391
u651717882
1555942811
Python
Python3
py
Runtime Error
0
0
121
a,b = int(),input().split() if a < b: print("a < b") elif a > b: print("a > b") else a == b: print("a == b")
File "/tmp/tmpwqmpkh5n/tmpxofztmps.py", line 6 else a == b: ^ SyntaxError: expected ':'
s427594802
p02391
u651717882
1555942839
Python
Python3
py
Runtime Error
0
0
114
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/tmpq5ioradv/tmp2r738wjo.py", line 1, in <module> a,b = int(),input().split() ^^^^^^^ EOFError: EOF when reading a line
s629012049
p02391
u651717882
1555943169
Python
Python3
py
Runtime Error
0
0
114
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/tmp945ui1kv/tmpc8mc4e2r.py", line 1, in <module> a,b = int(),input().split() ^^^^^^^ EOFError: EOF when reading a line
s151314500
p02391
u525395303
1555982185
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/tmp_vsjkkx5/tmpbub7iv58.py", line 4 print "a < b" ^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s792209849
p02391
u108130680
1556030735
Python
Python3
py
Runtime Error
0
0
129
a,b=map(int, input().split()) if a < b:     print("a < b") elif a == b:     print("a == b") else:     print("a > b")
File "/tmp/tmphaxu49nn/tmpzzf1g1a6.py", line 3     print("a < b") ^ SyntaxError: invalid non-printable character U+00A0
s365277097
p02391
u327386274
1556360745
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')
File "/tmp/tmp1h4bxqe4/tmpx7u1o14y.py", line 4 elif a = b: ^^^^^ SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
s804133734
p02391
u001166815
1556542763
Python
Python3
py
Runtime Error
0
0
117
#coding utf-8 a,b = map(int,input().split()) if(a == b): print('a == b') elif(a < b): print('a < b') else: print(
File "/tmp/tmpv68yk4ju/tmp0ipg293g.py", line 8 print( ^ SyntaxError: '(' was never closed
s131763344
p02391
u001166815
1556542782
Python
Python3
py
Runtime Error
0
0
117
#coding utf-8 a,b = map(int,input().split()) if(a == b): print('a == b') elif(a < b): print('a < b') else: print(
File "/tmp/tmp_99pexo7/tmpaqz9sic2.py", line 8 print( ^ SyntaxError: '(' was never closed
s618599725
p02391
u001166815
1556542879
Python
Python3
py
Runtime Error
0
0
136
#coding utf-8 a,b = map(int,input().split()) if(a == b): print('a == b',sep="") elif(a < b): print('a < b',sep="") else: print('a >
File "/tmp/tmpehz_gj2o/tmpu9uu5tmk.py", line 8 print('a > ^ SyntaxError: unterminated string literal (detected at line 8)
s255372937
p02391
u397862444
1558935214
Python
Python3
py
Runtime Error
0
0
94
a,b = map(int,input().split()) if a > b: op = '>' elif a < b: op = '==' print("a %s b"%op)
File "/tmp/tmpwzwkiec2/tmpehqdzw9p.py", line 4 op = '>' ^ IndentationError: expected an indented block after 'if' statement on line 3
s100486109
p02391
u214526598
1558935314
Python
Python3
py
Runtime Error
0
0
136
a,b = map(int,input().split())   if a > b:     op = '>' elif a < b:     op = '<' else:     op = '=='   print("a %s b"%op)
File "/tmp/tmpiajwb_yo/tmp6qi8w_vy.py", line 2   ^ SyntaxError: invalid non-printable character U+00A0
s377534444
p02391
u397862444
1558935332
Python
Python3
py
Runtime Error
0
0
109
a,b = map(int,input().split()) if a > b: op = '>' elif a < b: op = '<' else: op = '==' print("a %s b"%op)
File "/tmp/tmp6iaqemg8/tmpahx2izey.py", line 4 op = '>' ^ IndentationError: expected an indented block after 'if' statement on line 3
s324800540
p02391
u397862444
1558935353
Python
Python3
py
Runtime Error
0
0
109
a,b = map(int,input().split()) if a > b: op = '>' elif a < b: op = '<' else: op = '==' print("a %s b"%op)
File "/tmp/tmpqd6_anhs/tmpx3eea4q8.py", line 4 op = '>' ^ IndentationError: expected an indented block after 'if' statement on line 3
s752410375
p02391
u762654710
1558942862
Python
Python3
py
Runtime Error
0
0
104
a=int(input()) b=int(input()) if a<b: print(a"<"b) elif a>b: print(a">"b) elif a==b: print(a"=="b)
File "/tmp/tmpwh28pj8e/tmpr3_bqidm.py", line 4 print(a"<"b) ^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s863450147
p02391
u762654710
1558942901
Python
Python3
py
Runtime Error
0
0
98
a=int(input()) b=int(input()) if a<b: print(a<b) elif a>b: print(a>b) elif a==b: print(a==b)
Traceback (most recent call last): File "/tmp/tmp4ofln2ma/tmp9y0bmmvb.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s306095930
p02391
u967890409
1559007046
Python
Python3
py
Runtime Error
0
0
157
import sys data=int(input()) data2=int(input()) if(data>data2): print("a > b") if(data<data2): print("a < b") if(data==data2): print("a == b")
Traceback (most recent call last): File "/tmp/tmpkr417pl6/tmp_9ep3weo.py", line 3, in <module> data=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s720356918
p02391
u477464845
1559049160
Python
Python3
py
Runtime Error
0
0
108
a,b = map(int,input().strip()) if a<b: print('a<b') elif a> b: print('a>b') else: print('a==b')
Traceback (most recent call last): File "/tmp/tmp8_omjyg4/tmpq8la2mdn.py", line 1, in <module> a,b = map(int,input().strip()) ^^^^^^^ EOFError: EOF when reading a line
s784836817
p02391
u397862444
1559538573
Python
Python3
py
Runtime Error
0
0
109
a,b = map(int , input().split()) if a < b : print("a < b") elif a > b: print("a > b") else: print("a == b")
File "/tmp/tmpuph1ikco/tmp0omcyv62.py", line 3 print("a < b") ^ IndentationError: expected an indented block after 'if' statement on line 2
s745383541
p02391
u397862444
1559538626
Python
Python3
py
Runtime Error
0
0
109
a,b = map(int , input().split()) if a < b : print("a < b") elif a > b: print("a > b") else: print("a == b")
File "/tmp/tmp79c13cmc/tmpb7_7qaed.py", line 3 print("a < b") ^ IndentationError: expected an indented block after 'if' statement on line 2
s840518251
p02391
u918881304
1559571802
Python
Python3
py
Runtime Error
0
0
112
a,b = map(int,input().split()) if a < b: print("a < b") elif a > b: print("a > b") else print("a == b")
File "/tmp/tmp1h46gezw/tmp4qvo1rou.py", line 6 else print("a == b") ^^^^^ SyntaxError: expected ':'
s726402426
p02391
u451187291
1404563422
Python
Python
py
Runtime Error
0
0
192
def aizu001 (): xs = map(int,raw_input().split()) a = xs[0] b = xs[1] if a > b: print "a > b" else if a < b: print "a < b" else : print "a == b"
File "/tmp/tmpo0tc5tpk/tmpce2rd71p.py", line 6 print "a > b" ^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s328643464
p02391
u451187291
1404563461
Python
Python
py
Runtime Error
0
0
204
def aizu001 (): xs = map(int,raw_input().split()) a = xs[0] b = xs[1] if a > b: print "a > b" else if a < b: print "a < b" else : print "a == b" aizu001 ()
File "/tmp/tmpa614j5td/tmpgunhufve.py", line 6 print "a > b" ^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s913193816
p02391
u971748390
1409827947
Python
Python
py
Runtime Error
0
0
150
a,b= map(int,input().split()); if a < b : print("%d < %d" % (a,b)); elif a > b : print("%d > %d" % (a,b)); elif a == b : print("%d == %d" %(a,b)) ;
Traceback (most recent call last): File "/tmp/tmpuy7fgnyn/tmpau_x70hi.py", line 1, in <module> a,b= map(int,input().split()); ^^^^^^^ EOFError: EOF when reading a line
s378295597
p02391
u615353970
1410560773
Python
Python
py
Runtime Error
0
0
136
input = raw_input().split() a = input[0] b = input[1] if (a == b) : print "a == b" elif (a > b) : print "a > b" elif : print "a < b"
File "/tmp/tmpf6v31csq/tmpf7n62n07.py", line 6 print "a == b" ^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s406465145
p02391
u253257865
1415549962
Python
Python
py
Runtime Error
0
0
105
a = input() b = input() if a > b: print "a > b" elif a < b: print "a < b" else: print "a = b"
File "/tmp/tmpz7x127lz/tmp_eq_rqcv.py", line 4 print "a > b" ^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s316414258
p02391
u253257865
1415550139
Python
Python
py
Runtime Error
0
0
128
a_b = input().split(" ") a = a_b[0] b = a_b[1] if a > b: print "a > b" elif a < b: print "a < b" else: print "a = b"
File "/tmp/tmpwnmt2tw3/tmpn6hqr74e.py", line 5 print "a > b" ^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s135274708
p02391
u749493116
1420110277
Python
Python3
py
Runtime Error
0
0
126
#coding utf-8 x=input() y=input() if x > y: print("a > b") elif x==y: print("a == b") else: print("a < b")
Traceback (most recent call last): File "/tmp/tmpe6bzx3ap/tmpziymxku7.py", line 2, in <module> x=input() ^^^^^^^ EOFError: EOF when reading a line
s042052817
p02391
u580607517
1420277160
Python
Python
py
Runtime Error
0
0
121
a, b = int(raw_input()) a = int(raw_input()) b, c = divmod(a, 3600) d, e = divmod(c, 60) print ("%d:%d:%d") % (b,d,e)
Traceback (most recent call last): File "/tmp/tmpi1x40r9c/tmp7ws2kuk9.py", line 1, in <module> a, b = int(raw_input()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s344447526
p02391
u580607517
1420277269
Python
Python
py
Runtime Error
0
0
96
a, b = int(rawinput()) if a > b: print "a > b" elif a < b: print "a < b" else: print "a == b"
File "/tmp/tmp0pcg62ha/tmpuyuwrphu.py", line 3 print "a > b" ^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s837684737
p02391
u580607517
1420277304
Python
Python
py
Runtime Error
0
0
97
a, b = int(raw_input()) if a > b: print "a > b" elif a < b: print "a < b" else: print "a == b"
File "/tmp/tmp1rnqn6uj/tmpsdq8yowz.py", line 3 print "a > b" ^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s640065189
p02391
u580607517
1420277345
Python
Python
py
Runtime Error
0
0
97
a, b = int(raw_input()) if a > b: print "a > b" elif a < b: print "a < b" else: print "a == b"
File "/tmp/tmpgj2_c8ov/tmpbojxa5y7.py", line 3 print "a > b" ^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s716465247
p02391
u067975558
1422326210
Python
Python3
py
Runtime Error
0
0
144
(a, b) = input().rstrip().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/tmpe2847zje/tmpk061v9ww.py", line 1, in <module> (a, b) = input().rstrip().split('') ^^^^^^^ EOFError: EOF when reading a line
s927420641
p02391
u823030818
1422326233
Python
Python3
py
Runtime Error
0
0
144
(a,b) = input().rstlip().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/tmp1hpe6uf0/tmpwz3h2x1u.py", line 1, in <module> (a,b) = input().rstlip().split(' ') ^^^^^^^ EOFError: EOF when reading a line
s998229802
p02391
u067975558
1422326276
Python
Python3
py
Runtime Error
0
0
144
(a, b) = input().rstrip().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/tmpcibsnmgf/tmp5xrrwqa6.py", line 1, in <module> (a, b) = input().rstrip().split('') ^^^^^^^ EOFError: EOF when reading a line
s118055543
p02391
u823030818
1422326312
Python
Python3
py
Runtime Error
0
0
145
(a, b) = input().rstlip().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/tmp_5j59k57/tmpgnmzaqyr.py", line 1, in <module> (a, b) = input().rstlip().split(' ') ^^^^^^^ EOFError: EOF when reading a line
s583126827
p02391
u823030818
1422326387
Python
Python3
py
Runtime Error
0
0
148
(a, b) = input().rstlip().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/tmpj2fqi_so/tmpvr31twm_.py", line 1, in <module> (a, b) = input().rstlip().split(' ') ^^^^^^^ EOFError: EOF when reading a line
s070151267
p02391
u067975558
1422326392
Python
Python3
py
Runtime Error
0
0
144
(a, b) = input().rstrip().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/tmpkhe1lth2/tmpn47gfprn.py", line 1, in <module> (a, b) = input().rstrip().split('') ^^^^^^^ EOFError: EOF when reading a line
s051360741
p02391
u297342993
1422326458
Python
Python3
py
Runtime Error
0
0
215
(a,b) = input().rstrip().split(' ') #a = int(a) #b = int(b) #以下でも代替可 (a,b) = [int(x) for x in input().rstrip().split(' ')] if a < b: print("a < b") elif a > b: print("a > b") else: print("a == b")
Traceback (most recent call last): File "/tmp/tmp5t04sp48/tmpf_w0ogxa.py", line 1, in <module> (a,b) = input().rstrip().split(' ') ^^^^^^^ EOFError: EOF when reading a line
s553702158
p02391
u088816384
1424955832
Python
Python3
py
Runtime Error
0
0
101
a, b = int(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/tmp7l9wjg2m/tmp7s9irifv.py", line 1, in <module> a, b = int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s158524475
p02391
u166912986
1427265455
Python
Python
py
Runtime Error
0
0
158
n=map(int,raw_input().split()) if n[0]<n[1]: print str(n[0])+"<"str(n[1]) elif n[0]>n[1]: print str(n[0])+">"str(n[1]) else: print str(n[0])+"=="+str(n[1])
File "/tmp/tmppga1_p2u/tmp56yz781h.py", line 3 print str(n[0])+"<"str(n[1]) ^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s664286424
p02391
u436720733
1432107802
Python
Python3
py
Runtime Error
0
0
123
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/tmpgcdsso5z/tmp9_nbs15u.py", line 2, in <module> a, b = map(int(), input().split()) ^^^^^^^ EOFError: EOF when reading a line
s924724995
p02391
u410785272
1432108939
Python
Python3
py
Runtime Error
0
0
97
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/tmp1_bockeo/tmpwz561hqk.py", line 1, in <module> a, b = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s013094204
p02391
u062590758
1432109150
Python
Python3
py
Runtime Error
0
0
104
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/tmpskbdp8xc/tmpr5vxy7ml.py", line 1 a, b = map(int, input().split()) IndentationError: unexpected indent
s861922811
p02391
u062590758
1432109232
Python
Python3
py
Runtime Error
0
0
111
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/tmp6dpc4h0k/tmp4f4wtmc2.py", line 1 a, b = map(int, input().split()) IndentationError: unexpected indent
s188233880
p02391
u062590758
1432109294
Python
Python3
py
Runtime Error
0
0
108
a, b = map(int, input().split()) if a>b: print('a>b') elif a<b: print('a<b') else: print('a=b')
File "/tmp/tmpox92sa9a/tmpaq19mwfb.py", line 1 a, b = map(int, input().split()) IndentationError: unexpected indent
s997389347
p02391
u062590758
1432109333
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') else: print('a=b')
File "/tmp/tmpuss4wqn_/tmpqr2m1x1h.py", line 1 a, b = map(int, input().split(' ')) IndentationError: unexpected indent
s174429002
p02391
u555750476
1432110602
Python
Python3
py
Runtime Error
0
0
94
a,b=map(int,input().split()) if a<b print('a<b') elif a>b print('a>b') else print('a==b')
File "/tmp/tmpwmpztpf3/tmpl6mue02g.py", line 2 if a<b ^ SyntaxError: expected ':'
s353441934
p02391
u555750476
1432110646
Python
Python3
py
Runtime Error
0
0
73
a,b=map(int,input().split()) if a<b print('a<b') elif a>b print('a>b')
File "/tmp/tmps2f4fd8k/tmp9i6q74oo.py", line 2 if a<b ^ SyntaxError: expected ':'
s098704330
p02391
u555750476
1432110708
Python
Python3
py
Runtime Error
0
0
99
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/tmpx764uwbp/tmplwuo0dt7.py", line 2 if a<b ^ SyntaxError: expected ':'
s325016954
p02391
u555750476
1432110729
Python
Python3
py
Runtime Error
0
0
95
a,b=map(int,input().split()) if a<b print('a<b') elif a>b print('a>b') else: print('a==b')
File "/tmp/tmpuy4cjle9/tmpo3zgh4nb.py", line 2 if a<b ^ SyntaxError: expected ':'
s627985851
p02391
u555750476
1432110764
Python
Python3
py
Runtime Error
0
0
99
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/tmp6pkerdqr/tmpueywew1a.py", line 2 if a<b ^ SyntaxError: expected ':'
s142168525
p02391
u555750476
1432110840
Python
Python3
py
Runtime Error
0
0
105
a, b = map(int,input().split()) if a > b: print 'a > b' elif a < b: print 'a < b' else: print 'a == b'
File "/tmp/tmp2dks6h3w/tmp2wlh0y3h.py", line 3 print 'a > b' ^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s685903494
p02391
u555750476
1432110860
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/tmpu9ggpimg/tmpavfp_e36.py", line 3 print 'a > b' ^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s586931988
p02391
u172616925
1434864166
Python
Python
py
Runtime Error
0
0
83
a,b = input().split() if a > b print a > b elif a < b print a < b else print a == b
File "/tmp/tmpk3iirmmv/tmphhpcozr5.py", line 2 if a > b ^ SyntaxError: expected ':'
s860455656
p02391
u172616925
1434864270
Python
Python
py
Runtime Error
0
0
89
a,b = input().split() if a > b: print a > b elif a < b: print a < b else: print a == b
File "/tmp/tmp3rrypzdc/tmpgs9e9wk2.py", line 3 print a > b ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s002184480
p02391
u172616925
1434864425
Python
Python
py
Runtime Error
0
0
95
a,b = input().split() if a > b: print "a > b" elif a < b: print "a < b" else: print "a == b"
File "/tmp/tmpj_oquisi/tmpbk4yfn8h.py", line 3 print "a > b" ^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s716016731
p02391
u446066125
1436148329
Python
Python3
py
Runtime Error
0
0
158
num = input().split(); a = int(num[0]); b = int(num[1]); if a > b : print(a,b,sep='>'); else if a < b : print(a,b,sep='<'); else : print(a,b,sep="==");
File "/tmp/tmp3a4xnwix/tmpa5go85vq.py", line 7 else if a < b : ^^ SyntaxError: expected ':'
s679985364
p02391
u614711522
1436148836
Python
Python3
py
Runtime Error
0
0
139
x = input().split() a = int( x[0]) b = int( x[1]) if a > b: print( "a > b") else a < b: print( "a < b") else: print( "a == b")
File "/tmp/tmpwixzfna6/tmp4on0le6q.py", line 7 else a < b: ^ SyntaxError: expected ':'
s672471425
p02391
u614711522
1436149225
Python
Python3
py
Runtime Error
0
0
139
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/tmppmhlib_v/tmpe9eufssx.py", line 10 print( "a == b" ^ SyntaxError: '(' was never closed