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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s928868467 | p02391 | u077284614 | 1461233965 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | a, b=map(int,imput().split())
if a<b:
print("a<b")
elif a>b:
print("a>b")
elif a==b:
print("a=b")
else:
pass | Traceback (most recent call last):
File "/tmp/tmpr7clll1q/tmpk3n3egyw.py", line 1, in <module>
a, b=map(int,imput().split())
^^^^^
NameError: name 'imput' is not defined. Did you mean: 'input'?
| |
s854671724 | p02391 | u077284614 | 1461234020 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | a, b=map(int,imput().split())
if a<b:
print("a < b")
elif a>b:
print("a > b")
elif a==b:
print("a = b")
else:
pass | Traceback (most recent call last):
File "/tmp/tmpzcfy8kh_/tmpq65krt27.py", line 1, in <module>
a, b=map(int,imput().split())
^^^^^
NameError: name 'imput' is not defined. Did you mean: 'input'?
| |
s625116449 | p02391 | u077284614 | 1461234133 | Python | Python3 | py | Runtime Error | 0 | 0 | 123 | a, b=map(int,imput().split())
if a<b:
print("a < b")
elif a>b:
print("a > b")
elif a==b:
print("a == b")
else:
pass | Traceback (most recent call last):
File "/tmp/tmp5950slyc/tmp7w4ygmw3.py", line 1, in <module>
a, b=map(int,imput().split())
^^^^^
NameError: name 'imput' is not defined. Did you mean: 'input'?
| |
s024731288 | p02391 | u077284614 | 1461234165 | Python | Python3 | py | Runtime Error | 0 | 0 | 123 | a, b=map(int,imput().split())
if a<b:
print("a < b")
elif a>b:
print("a > b")
elif a==b:
print("a == b")
else:
pass | Traceback (most recent call last):
File "/tmp/tmpga2uo88p/tmp7wxmb5bx.py", line 1, in <module>
a, b=map(int,imput().split())
^^^^^
NameError: name 'imput' is not defined. Did you mean: 'input'?
| |
s923147768 | p02391 | u077284614 | 1461234347 | Python | Python3 | py | Runtime Error | 0 | 0 | 125 | a, b=map(int,imput().split())
if a < b:
print('a < b')
elif a > b:
print('a > b')
elif a == b:
print('a == b')
else:
pass | Traceback (most recent call last):
File "/tmp/tmp3nizof_h/tmpsop72lxx.py", line 1, in <module>
a, b=map(int,imput().split())
^^^^^
NameError: name 'imput' is not defined. Did you mean: 'input'?
| |
s100034073 | p02391 | u178329845 | 1461941836 | Python | Python | py | Runtime Error | 10 | 6316 | 135 | i = raw_input()
a = int(i[0])
b = int(i[1])
if a < b:
print "a < b"
elif a > b:
print "a > b"
elif a == b:
print "a == b" | File "/tmp/tmpdnxknl1q/tmp8_aetrh1.py", line 7
print "a < b"
^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s449677676 | p02391 | u999470575 | 1462782847 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | a???,b = input().split(' ')
if int(a) > int(b):
print(a???> b)
elif int(a) < int(b):
print(a < b)
else:
print(a == b) | File "/tmp/tmpk_sdrib1/tmpgdhfdu3h.py", line 1
a???,b = input().split(' ')
^
SyntaxError: invalid syntax
| |
s045037297 | p02391 | u177370127 | 1465136338 | Python | Python3 | py | Runtime Error | 0 | 0 | 179 | a, b = list(map(int, split()))
if a == b:
print("a" + " == " + "b")
elif a < b:
print("a" + " < " + "b")
elif a > b:
print("a" + " > " + "b")
else:
print("timpo") | Traceback (most recent call last):
File "/tmp/tmphh4vv7k1/tmpk07u3uz1.py", line 1, in <module>
a, b = list(map(int, split()))
^^^^^
NameError: name 'split' is not defined
| |
s717599381 | p02391 | u177370127 | 1465136533 | Python | Python3 | py | Runtime Error | 0 | 0 | 185 | a, b = list(map(int,input.split()))
if a == b:
print("a" + " == " + "b")
elif a < b:
print("a" + " < " + "b")
elif a > b:
print("a" + " > " + "b")
else:
print("timpo") | Traceback (most recent call last):
File "/tmp/tmpk5vy2osv/tmpx2xkzn7t.py", line 1, in <module>
a, b = list(map(int,input.split()))
^^^^^^^^^^^
AttributeError: 'builtin_function_or_method' object has no attribute 'split'
| |
s980212345 | p02391 | u177370127 | 1465136668 | Python | Python3 | py | Runtime Error | 0 | 0 | 187 | a, b = list(map(int, input(split())))
if a == b:
print("a" + " == " + "b")
elif a < b:
print("a" + " < " + "b")
elif a > b:
print("a" + " > " + "b")
else:
print("timpo") | Traceback (most recent call last):
File "/tmp/tmpakdf8wy6/tmph_mxa3om.py", line 1, in <module>
a, b = list(map(int, input(split())))
^^^^^
NameError: name 'split' is not defined
| |
s151501612 | p02391 | u177370127 | 1465136741 | Python | Python3 | py | Runtime Error | 0 | 0 | 171 | a, b = split(input())
if a == b:
print("a" + " == " + "b")
elif a < b:
print("a" + " < " + "b")
elif a > b:
print("a" + " > " + "b")
else:
print("timpo") | Traceback (most recent call last):
File "/tmp/tmp4b1c_3af/tmplo29i71j.py", line 1, in <module>
a, b = split(input())
^^^^^
NameError: name 'split' is not defined
| |
s085005764 | p02391 | u177370127 | 1465136779 | Python | Python3 | py | Runtime Error | 0 | 0 | 176 | a, b = split(int(input()))
if a == b:
print("a" + " == " + "b")
elif a < b:
print("a" + " < " + "b")
elif a > b:
print("a" + " > " + "b")
else:
print("timpo") | Traceback (most recent call last):
File "/tmp/tmp7dav4til/tmpu_6ubww5.py", line 1, in <module>
a, b = split(int(input()))
^^^^^
NameError: name 'split' is not defined
| |
s080952401 | p02391 | u177370127 | 1465136845 | Python | Python3 | py | Runtime Error | 0 | 0 | 175 | a,b = split(int(input()))
if a == b:
print("a" + " == " + "b")
elif a < b:
print("a" + " < " + "b")
elif a > b:
print("a" + " > " + "b")
else:
print("timpo") | Traceback (most recent call last):
File "/tmp/tmpqhysls1y/tmpe87ec0w_.py", line 1, in <module>
a,b = split(int(input()))
^^^^^
NameError: name 'split' is not defined
| |
s851510113 | p02391 | u177370127 | 1465136899 | Python | Python3 | py | Runtime Error | 0 | 0 | 181 | a, b = map(int(split(input())))
if a == b:
print("a" + " == " + "b")
elif a < b:
print("a" + " < " + "b")
elif a > b:
print("a" + " > " + "b")
else:
print("timpo") | Traceback (most recent call last):
File "/tmp/tmpdc97zms6/tmpft9ah23t.py", line 1, in <module>
a, b = map(int(split(input())))
^^^^^
NameError: name 'split' is not defined
| |
s487140096 | p02391 | u177370127 | 1465136935 | Python | Python3 | py | Runtime Error | 0 | 0 | 186 | a,b = list(map(int, split(input())))
if a == b:
print("a" + " == " + "b")
elif a < b:
print("a" + " < " + "b")
elif a > b:
print("a" + " > " + "b")
else:
print("timpo") | Traceback (most recent call last):
File "/tmp/tmp4pe4smbs/tmpkndck7yo.py", line 1, in <module>
a,b = list(map(int, split(input())))
^^^^^
NameError: name 'split' is not defined
| |
s851614933 | p02391 | u993259296 | 1465214544 | Python | Python3 | py | Runtime Error | 0 | 0 | 110 | x = input(a)
y = input(b)
if x > y:
print('a < b')
if y > x:
else:
print('a > b')
if x = y:
print('a == b') | File "/tmp/tmpdey0u9ci/tmp57a479r5.py", line 6
else:
^
IndentationError: expected an indented block after 'if' statement on line 5
| |
s391645863 | p02391 | u305878853 | 1465214562 | Python | Python3 | py | Runtime Error | 0 | 0 | 140 | i = input().split("")
a = int([0])
b = int([1])
if a > b;
print("a > b")
elif a < b;
print("a < b")
else a = b;
print("a = b") | File "/tmp/tmp8t8778zx/tmpzcwsvgyq.py", line 6
if a > b;
^
SyntaxError: invalid syntax
| |
s469909951 | p02391 | u305878853 | 1465214680 | Python | Python3 | py | Runtime Error | 0 | 0 | 141 | i = input().split("")
a = int([0])
b = int([1])
if a > b;
print("a > b")
elif a < b;
print("a < b")
else a = b;
print('a == b') | File "/tmp/tmpjb9gp2ug/tmpig9t2y69.py", line 6
if a > b;
^
SyntaxError: invalid syntax
| |
s622530141 | p02391 | u119456964 | 1465792426 | Python | Python | py | Runtime Error | 0 | 0 | 121 | a, b = map(int, raw_input().split())
if a == b:
print 'a == b'
elif a < b:
print 'a < b'
else a > b:
print 'a > b' | File "/tmp/tmpz4iq7kx5/tmpa3gqejzy.py", line 4
print 'a == b'
^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s559822779 | p02391 | u169013892 | 1469450832 | Python | Python3 | py | Runtime Error | 0 | 0 | 155 | #coding: utf-8
nums=list(map(int,input().split()))
a=nums[0]
b=nums[1]
if(a>b){
print("a>b")
}elif(a<b){
print("a<b")
}else{
print("a==b")
} | File "/tmp/tmpymavy92d/tmp3pavi32i.py", line 8
if(a>b){
^
SyntaxError: invalid syntax
| |
s519279772 | p02391 | u644636020 | 1469515367 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | 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/tmp6927mz4a/tmpnlzr1cf8.py", line 1, in <module>
a, b =int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s937427354 | p02391 | u369313788 | 1469515395 | Python | Python3 | py | Runtime Error | 0 | 0 | 132 | a,b = [int(i) for i in 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/tmps28c1n4s/tmpddrxl3ie.py", line 1, in <module>
a,b = [int(i) for i in int(input()).split]
^^^^^^^
EOFError: EOF when reading a line
| |
s113462985 | p02391 | u644636020 | 1469515402 | Python | Python3 | py | Runtime Error | 0 | 0 | 107 | 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/tmpyfxpdxyn/tmpfkti4xd7.py", line 1, in <module>
a, b =int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s377471157 | p02391 | u369313788 | 1469515432 | Python | Python3 | py | Runtime Error | 0 | 0 | 124 | 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") | Traceback (most recent call last):
File "/tmp/tmpw3j9z7ow/tmpvx64y8vr.py", line 1, in <module>
a,b = [int(i) for i in input().split]
^^^^^^^
EOFError: EOF when reading a line
| |
s696130879 | p02391 | u369313788 | 1469515488 | Python | Python3 | py | Runtime Error | 0 | 0 | 124 | 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") | Traceback (most recent call last):
File "/tmp/tmpimgqgx92/tmp4w1zofkt.py", line 1, in <module>
a,b = [int(i) for i in input().split]
^^^^^^^
EOFError: EOF when reading a line
| |
s693509062 | p02391 | u600195957 | 1469515523 | Python | Python3 | py | Runtime Error | 0 | 0 | 133 | a,b = [int(i) for i in input().split()]
if a < b:
print("a < b")
elif a > b:
print("a > b")
else a == b:
print("a == b") | File "/tmp/tmplqabvgos/tmpnbo_sqgh.py", line 7
else a == b:
^
SyntaxError: expected ':'
| |
s595841936 | p02391 | u644636020 | 1469515524 | Python | Python3 | py | Runtime Error | 0 | 0 | 125 | a, b = [int(i) for i in input().split]
if a < b:
print(a < b)
elif a > b:
print(a > b)
else a == b:
print(a == b) | File "/tmp/tmp8ea41oj2/tmpp5wqcpio.py", line 6
else a == b:
^
SyntaxError: expected ':'
| |
s835471759 | p02391 | u085472528 | 1469515592 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | = int[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/tmpj3mi425f/tmp_k_fyua4.py", line 1
= int[int(i) for i in input().split()]
IndentationError: unexpected indent
| |
s310191702 | p02391 | u514745787 | 1469515620 | Python | Python3 | py | Runtime Error | 0 | 0 | 134 | a, b = [int(i) for i in input().split()]
if a < b:
print("a < b")
elif a > b:
print("a > b")
elif a == b
print("a == b") | File "/tmp/tmp56ftx1nx/tmptbhh9xfx.py", line 8
elif a == b
^
SyntaxError: expected ':'
| |
s970802926 | p02391 | u204883389 | 1469515621 | Python | Python3 | py | Runtime Error | 0 | 0 | 134 | a, b = [int(i) for i in input().split()]
if a < b:
print("a < b")
elif ???:
print("a > b")
else:
print("a == b") | File "/tmp/tmpjm20oti7/tmp5lqwxrl7.py", line 5
elif ???:
^^^^
SyntaxError: invalid syntax
| |
s144438699 | p02391 | u514745787 | 1469515634 | Python | Python3 | py | Runtime Error | 0 | 0 | 134 | a, b = [int(i) for i in input().split()]
if a < b:
print("a < b")
elif a > b:
print("a > b")
elif a == b
print("a == b") | File "/tmp/tmp6e8cx08c/tmpc9guhlaj.py", line 8
elif a == b
^
SyntaxError: expected ':'
| |
s933975286 | p02391 | u382316013 | 1469515640 | Python | Python3 | py | Runtime Error | 0 | 0 | 128 | 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") | File "/tmp/tmprqzu210i/tmp9bsqjo85.py", line 3
if a = b:
^^^^^
SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
| |
s474730900 | p02391 | u085472528 | 1469515672 | Python | Python3 | py | Runtime Error | 0 | 0 | 128 | = int[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/tmpf8b3i0jn/tmp875r4sz5.py", line 1
= int[int(i) for i in input().split()]
IndentationError: unexpected indent
| |
s107303630 | p02391 | u514745787 | 1469515675 | Python | Python3 | py | Runtime Error | 0 | 0 | 135 | a, b = [int(i) for i in input().split()]
if a < b:
print("a < b")
else a > b:
print("a > b")
elif a == b
print("a == b") | File "/tmp/tmp4525tc7v/tmpgkbsxug_.py", line 6
else a > b:
^
SyntaxError: expected ':'
| |
s246364102 | p02391 | u204883389 | 1469515681 | Python | Python3 | py | Runtime Error | 0 | 0 | 136 | 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") | File "/tmp/tmpycus7aw7/tmpbsf55285.py", line 5
elif a > b:
^^^^
SyntaxError: invalid syntax
| |
s284166981 | p02391 | u085472528 | 1469515714 | Python | Python3 | py | Runtime Error | 0 | 0 | 124 | a,b = int[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/tmph37m4kvy/tmp61z3ilfa.py", line 1
a,b = int[int(i) for i in input().split()]
^^^
SyntaxError: invalid syntax
| |
s581443311 | p02391 | u644636020 | 1469515858 | Python | Python3 | py | Runtime Error | 0 | 0 | 119 | 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) | Traceback (most recent call last):
File "/tmp/tmp2ik8jcyn/tmp4yt4909s.py", line 1, in <module>
a, b = [int(i) for i in input().split]
^^^^^^^
EOFError: EOF when reading a line
| |
s109089820 | p02391 | u644636020 | 1469515878 | Python | Python3 | py | Runtime Error | 0 | 0 | 125 | 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") | Traceback (most recent call last):
File "/tmp/tmpps4enps9/tmpgc5cec8w.py", line 1, in <module>
a, b = [int(i) for i in input().split]
^^^^^^^
EOFError: EOF when reading a line
| |
s975418542 | p02391 | u085472528 | 1469515889 | Python | Python3 | py | Runtime Error | 0 | 0 | 126 | a,b = int[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/tmp4bl_4va4/tmp3xlf36_n.py", line 1
a,b = int[int(i) for i in input().split()]
^^^
SyntaxError: invalid syntax
| |
s923190292 | p02391 | u644636020 | 1469515892 | Python | Python3 | py | Runtime Error | 0 | 0 | 123 | a, b = [int(i) for i in input().split]
if a < b:
print("a < b")
if a > b:
print("a > b")
else:
print("a == b") | Traceback (most recent call last):
File "/tmp/tmp5ndzdea6/tmptrmqxmd5.py", line 1, in <module>
a, b = [int(i) for i in input().split]
^^^^^^^
EOFError: EOF when reading a line
| |
s140324826 | p02391 | u644636020 | 1469515921 | Python | Python3 | py | Runtime Error | 0 | 0 | 125 | 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") | Traceback (most recent call last):
File "/tmp/tmp8y1nqlj_/tmppfif0ab_.py", line 1, in <module>
a, b = [int(i) for i in input().split]
^^^^^^^
EOFError: EOF when reading a line
| |
s195900488 | p02391 | u085472528 | 1469515921 | Python | Python3 | py | Runtime Error | 0 | 0 | 132 | a,b = int[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/tmpobmy7tkx/tmpcu4axxu4.py", line 1
a,b = int[int(i) for i in input().split()]
^^^
SyntaxError: invalid syntax
| |
s355245263 | p02391 | u085472528 | 1469515994 | Python | Python3 | py | Runtime Error | 0 | 0 | 132 | a,b = int[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/tmpvq9cdf3p/tmp67czr9z6.py", line 1
a,b = int[int(i) for i in input().split()]
^^^
SyntaxError: invalid syntax
| |
s831626131 | p02391 | u661284763 | 1469515998 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | a,b = [int(i) for i in input().split()]
if a<b:
print("a<b")
elif a>b:
print("a>b")
else a=b:
print("a=b") | File "/tmp/tmp0dicb8fi/tmpggslae_l.py", line 9
else a=b:
^
SyntaxError: expected ':'
| |
s426260036 | p02391 | u085472528 | 1469516038 | Python | Python3 | py | Runtime Error | 0 | 0 | 132 | a,b = int[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/tmpji0d112o/tmpskl72pgn.py", line 1
a,b = int[int(i) for i in input().split()]
^^^
SyntaxError: invalid syntax
| |
s550721310 | p02391 | u661284763 | 1469516062 | Python | Python3 | py | Runtime Error | 0 | 0 | 135 | a,b = [int(i) for i in input().split()]
if a < b:
print("a < b")
elif a > b:
print("a > b")
else a == b:
print("a == b") | File "/tmp/tmpz79ba3us/tmpen20w1oo.py", line 9
else a == b:
^
SyntaxError: expected ':'
| |
s484411983 | p02391 | u085472528 | 1469516063 | Python | Python3 | py | Runtime Error | 0 | 0 | 133 | a, b = int[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/tmphweqla7w/tmpd8iq71v6.py", line 1
a, b = int[int(i) for i in input().split()]
^^^
SyntaxError: invalid syntax
| |
s436705648 | p02391 | u661284763 | 1469516435 | Python | Python3 | py | Runtime Error | 0 | 0 | 135 | a,b = [int(i) for i in input().split()]
if a < b:
print("a < b")
elif a > b:
print("a > b")
else a == b:
print("a == b") | File "/tmp/tmpelt61b9l/tmp_tl969xv.py", line 9
else a == b:
^
SyntaxError: expected ':'
| |
s997637044 | p02391 | u661284763 | 1469516765 | Python | Python | py | Runtime Error | 0 | 0 | 122 | a,b = [int(i) for i in input().split()]
if a<b:
print("a<b")
elif a>b:
print("a>b")
else a=b:
print("a==b") | File "/tmp/tmpxdgd3f4w/tmprwlu06ul.py", line 9
else a=b:
^
SyntaxError: expected ':'
| |
s111043131 | p02391 | u661284763 | 1469516784 | Python | Python | py | Runtime Error | 0 | 0 | 123 | a,b = [int(i) for i in input().split()]
if a<b:
print("a<b")
elif a>b:
print("a>b")
else a==b:
print("a==b") | File "/tmp/tmpf_wk2ewy/tmpmaq91b9z.py", line 9
else a==b:
^
SyntaxError: expected ':'
| |
s530070754 | p02391 | u264632995 | 1469516793 | Python | Python3 | py | Runtime Error | 0 | 0 | 126 | 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) | File "/tmp/tmpnku_jyqd/tmp6jel60s3.py", line 9
else
^
SyntaxError: expected ':'
| |
s404029573 | p02391 | u661284763 | 1469517028 | Python | Python | py | Runtime Error | 0 | 0 | 122 | 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") | Traceback (most recent call last):
File "/tmp/tmpl6x9oczu/tmpjkaa_i72.py", line 1, in <module>
a, b = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s098932524 | p02391 | u661284763 | 1469517047 | Python | Python | py | Runtime Error | 0 | 0 | 123 | 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") | Traceback (most recent call last):
File "/tmp/tmp72ranc7w/tmpfhldp5ci.py", line 1, in <module>
a, b = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s483904913 | p02391 | u661284763 | 1469517092 | Python | Python | py | Runtime Error | 0 | 0 | 129 | 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") | Traceback (most recent call last):
File "/tmp/tmp8ypjegan/tmpvby6_ygl.py", line 1, in <module>
a, b = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s004574390 | p02391 | u264632995 | 1469517176 | Python | Python3 | py | Runtime Error | 0 | 0 | 119 | 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) | File "/tmp/tmp_btgd636/tmpa1luf5gt.py", line 7
else
^
SyntaxError: expected ':'
| |
s664201965 | p02391 | u264632995 | 1469517200 | Python | Python3 | py | Runtime Error | 0 | 0 | 119 | 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) | File "/tmp/tmplh3dbze0/tmp606iyy9g.py", line 7
else
^
SyntaxError: expected ':'
| |
s204528119 | p02391 | u216425054 | 1470538494 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | [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/tmpzvkxcmyh/tmpq1y53dx7.py", line 1, in <module>
[a.b]=map(int,input().split( ))
^^^^^^^
EOFError: EOF when reading a line
| |
s071253407 | p02391 | u216425054 | 1470538523 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | [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/tmpjjvagrur/tmpilu7e6i2.py", line 1, in <module>
[a.b]=map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s298251136 | p02391 | u216425054 | 1470538549 | 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/tmp9xc0b4r6/tmpkcykz2va.py", line 1, in <module>
[a.b]=map(int,input().split( ))
^^^^^^^
EOFError: EOF when reading a line
| |
s212755927 | p02391 | u216425054 | 1470538597 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | [a.b]=map(int,raw_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/tmpmzafozmx/tmpdkblzoey.py", line 1, in <module>
[a.b]=map(int,raw_input().split( ))
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s537628312 | p02391 | u216425054 | 1470539025 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | a,b=map(int,input.split())
op = ">" if a > b else "<" if a < b else "=="
print("a",op,"b") | Traceback (most recent call last):
File "/tmp/tmpw25mq6ga/tmp7xbjgkbg.py", line 1, in <module>
a,b=map(int,input.split())
^^^^^^^^^^^
AttributeError: 'builtin_function_or_method' object has no attribute 'split'
| |
s379912813 | p02391 | u998435601 | 1470853459 | Python | Python | py | Runtime Error | 0 | 0 | 133 | t = raw_input()
s = t.split()
if s[0] == s[1]:
print "a == b"
else:
if int(s[0]) > int(s[1])
print "a > b"
else:
print "a < b" | File "/tmp/tmp8zmx8eik/tmpydctefqm.py", line 4
print "a == b"
^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s226998176 | p02391 | u362094064 | 1473918509 | Python | Python3 | py | Runtime Error | 0 | 0 | 132 | a, b = input()split(' ')
if int(a) > int(b):
print('a > b')
elif???int(a) < int(b):
print('a < b')
else:
print('a == b') | File "/tmp/tmpgbqw7cjs/tmp_3gj0t2q.py", line 1
a, b = input()split(' ')
^^^^^
SyntaxError: invalid syntax
| |
s804869684 | p02391 | u362094064 | 1473918630 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | a,b = input()split(' ')
if int(a) > int(b):
print('a>b')
elifint(a) < int(b):
print('a<b')
else:
print('a==b') | File "/tmp/tmpfrjugi0j/tmp6abquntq.py", line 1
a,b = input()split(' ')
^^^^^
SyntaxError: invalid syntax
| |
s330361968 | p02391 | u393305246 | 1474107729 | Python | Python | py | Runtime Error | 0 | 0 | 116 | intl=map(int, raw_input())
a=intl[0]
b=intl[1]
if a==b:
print "a==b"
elif a>b:
print "a>b"
else:
print "a<b" | File "/tmp/tmpju6ybxx7/tmp030gtpj4.py", line 7
print "a==b"
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s227419208 | p02391 | u393305246 | 1474107783 | Python | Python | py | Runtime Error | 0 | 0 | 128 | intl=map(int, raw_input().split)
a=intl[0]
b=intl[1]
if a==b:
print "a == b"
elif a>b:
print "a > b"
else:
print "a < b" | File "/tmp/tmp48f_nu0e/tmpv27tn8z5.py", line 7
print "a == b"
^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s840627496 | p02391 | u822442916 | 1474198229 | 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 a=b :
print('a==b')
| File "/tmp/tmphh8wd51i/tmpyf7y6ub3.py", line 7
else a=b :
^
SyntaxError: expected ':'
| |
s119190255 | p02391 | u648470099 | 1474204447 | Python | Python3 | py | Runtime Error | 0 | 0 | 149 | a,b=map(int,input(),split())
if a < b:
print("a<b")
else:
if a == b:
print("a=b")
else:
if a>b:
print("a>b") | Traceback (most recent call last):
File "/tmp/tmpwv_0z83r/tmpm9_uxbvw.py", line 1, in <module>
a,b=map(int,input(),split())
^^^^^^^
EOFError: EOF when reading a line
| |
s895661005 | p02391 | u494314211 | 1475344318 | Python | Python3 | py | Runtime Error | 0 | 0 | 112 | a,b=map(int,input().split())
if a>b:
print(a,">",b)
else if a==b:
print(a,"==",b)
else if a<b:
print(a,"<",b) | File "/tmp/tmpdwdr3u1_/tmpgfiivsn8.py", line 4
else if a==b:
^^
SyntaxError: expected ':'
| |
s475593335 | p02391 | u833246689 | 1475465155 | Python | Python | py | Runtime Error | 0 | 0 | 109 | 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/tmpqlfpiblz/tmp57zw6us6.py", line 4
print "a<b"
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s518169305 | p02391 | u226541377 | 1476361114 | Python | Python3 | py | Runtime Error | 0 | 0 | 133 | 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/tmpn73h4_kv/tmpzgjzqbh3.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s265307802 | p02391 | u743390845 | 1477324711 | Python | Python3 | py | Runtime Error | 0 | 0 | 95 | ,b= input().split()
if(a==b):
print("a==b")
elif(a<b):
print("a<b")
elif(a>b):
print("a>b") | File "/tmp/tmphq9b10dq/tmps19ukgv0.py", line 1
,b= input().split()
^
SyntaxError: invalid syntax
| |
s128025155 | p02391 | u743390845 | 1477325745 | Python | Python3 | py | Runtime Error | 0 | 0 | 107 | 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/tmpbd7g7sz3/tmpw5pfuu4i.py", line 1, in <module>
a,b= int(input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s896827771 | p02391 | u982344959 | 1477544761 | Python | Python3 | py | Runtime Error | 0 | 0 | 3707 | data:image/jpeg;base64,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 | File "/tmp/tmpoq1ld0nv/tmpl_afa_fw.py", line 1
data:image/jpeg;base64,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
^
SyntaxError: invalid decimal literal
| |
s513584055 | p02391 | u982344959 | 1477545651 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | a, b=map(int, input().sprit())
if a>b:
print("a > b")
else:
if a<b:
print("a < b")
else:
print("a == b")
| Traceback (most recent call last):
File "/tmp/tmpf5vbu287/tmpqisgbk2d.py", line 1, in <module>
a, b=map(int, input().sprit())
^^^^^^^
EOFError: EOF when reading a line
| |
s865897363 | p02391 | u133061229 | 1477545725 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | 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/tmp92me8pvd/tmpaxgw3r2h.py", line 4
else :
^^^^
SyntaxError: invalid syntax
| |
s296321457 | p02391 | u326248180 | 1478756808 | Python | Python3 | py | Runtime Error | 0 | 0 | 123 | a, b = int(input().sprit(" "))
if a > b
print("{} > {}".format(a, b))
elif a < b
print("{} < {}".format(a, b))
| File "/tmp/tmp284xemtd/tmpamqmut59.py", line 3
if a > b
^
SyntaxError: expected ':'
| |
s428060266 | p02391 | u326248180 | 1478756836 | Python | Python3 | py | Runtime Error | 0 | 0 | 119 | a, b = int(input().sprit(" "))
if a > b
print("{} > {}".format(a, b))
elif a < b
print("{} < {}".format(a, b))
| File "/tmp/tmpyaxnph3_/tmp_pfeqtyv.py", line 3
if a > b
^
SyntaxError: expected ':'
| |
s390623846 | p02391 | u326248180 | 1478756901 | Python | Python3 | py | Runtime Error | 0 | 0 | 164 | a, b = int(input().sprit(" "))
if a > b
print("{} > {}".format(a, b))
elif a < b
print("{} < {}".format(a, b))
elif a eq b
print("{} == {}".format(a, b))
| File "/tmp/tmpexjswb80/tmpq6t6jgo5.py", line 3
if a > b
^
SyntaxError: expected ':'
| |
s203683074 | p02391 | u326248180 | 1478756928 | Python | Python3 | py | Runtime Error | 0 | 0 | 164 | a, b = int(input().sprit(" "))
if a > b
print("{} > {}".format(a, b))
elif a < b
print("{} < {}".format(a, b))
elif a == b
print("{} == {}".format(a, b))
| File "/tmp/tmposua6o9h/tmpgds5x9tm.py", line 3
if a > b
^
SyntaxError: expected ':'
| |
s744060146 | p02391 | u326248180 | 1478756953 | Python | Python3 | py | Runtime Error | 0 | 0 | 183 | a, b = int(input().sprit(" "))
print(a)
print(b)
if a > b
print("{} > {}".format(a, b))
elif a < b
print("{} < {}".format(a, b))
elif a == b
print("{} == {}".format(a, b))
| File "/tmp/tmpno7b_5id/tmp17nqaq95.py", line 6
if a > b
^
SyntaxError: expected ':'
| |
s937576644 | p02391 | u326248180 | 1478757038 | Python | Python3 | py | Runtime Error | 0 | 0 | 165 | a, b = map(int, input().split())
if a > b
print("{} > {}".format(a, b))
elif a < b
print("{} < {}".format(a, b))
elif a == b
print("{} == {}".format(a, b))
| File "/tmp/tmpij5wrpnq/tmpgx8vbgl_.py", line 2
if a > b
^
SyntaxError: expected ':'
| |
s135009220 | p02391 | u385274266 | 1478932554 | Python | Python3 | py | Runtime Error | 30 | 7676 | 226 | num = input()
num_list = []
num_list = num.split()
if int(num_list[0]) == int(num_list[1]):
print('a',b,sep=' == ')
elif int(num_list[0]) > int(num_list[1]):
print('a','b',sep=' > ')
else:
print('a','b',sep=' < ') | Traceback (most recent call last):
File "/tmp/tmppi4mzwbg/tmp1i8ztjfw.py", line 1, in <module>
num = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s096236313 | p02391 | u133061229 | 1479357533 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | 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/tmp243libvv/tmpvx1lkylw.py", line 4
else :
^^^^
SyntaxError: invalid syntax
| |
s848565392 | p02391 | u133061229 | 1479357569 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | 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/tmpg5qy4wkl/tmpafuzkxg0.py", line 3
print("a > b")
^
IndentationError: expected an indented block after 'if' statement on line 2
| |
s254365360 | p02391 | u226541377 | 1479695644 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | a,b = map(int,raw_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/tmpqc06jpyc/tmpzu43siri.py", line 1, in <module>
a,b = map(int,raw_input().split())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s670268996 | p02391 | u226541377 | 1479695731 | Python | Python3 | py | Runtime Error | 0 | 0 | 126 | a,b = map(int,raw_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/tmp3z3ald75/tmpb3yf9nwk.py", line 1, in <module>
a,b = map(int,raw_input().split())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s244703486 | p02391 | u302561071 | 1479811218 | Python | Python3 | py | Runtime Error | 0 | 0 | 131 | data = input().split()
a=int(data[0])
b=int(data[1])
if a == b:
print("a == b")
elif a > b:
print("a > b")
else
print("a < b")
| File "/tmp/tmpfxh8ywmo/tmparih_b5a.py", line 8
else
^
SyntaxError: expected ':'
| |
s877928416 | p02391 | u433605272 | 1479993375 | Python | Python3 | py | Runtime Error | 0 | 0 | 118 | m,n = map(int, raw_input(2,6).split())
if(m>n):
print('a>b')
elif(m<n):
print('a<b')
else:
print('a == b') | Traceback (most recent call last):
File "/tmp/tmpv_qosho5/tmpho9oosv4.py", line 1, in <module>
m,n = map(int, raw_input(2,6).split())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s680700995 | p02391 | u104931506 | 1480179031 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | a,b = map(int, input().split())
if a > b:
print('a > b')
else a < b:
print('a < b')
else a=b:
print('a = b') | File "/tmp/tmp5d8qilxq/tmpg6m6k903.py", line 4
else a < b:
^
SyntaxError: expected ':'
| |
s453510426 | p02391 | u104931506 | 1480179052 | 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 a==b:
print('a = b') | File "/tmp/tmpdsrk5dn8/tmpueumhlkm.py", line 6
else a==b:
^
SyntaxError: expected ':'
| |
s712876517 | p02391 | u104931506 | 1480179104 | 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 a==b:
print("a == b") | File "/tmp/tmpaj7l1t0k/tmpw5lqzumx.py", line 6
else a==b:
^
SyntaxError: expected ':'
| |
s957147210 | p02391 | u215982958 | 1480860100 | Python | Python | py | Runtime Error | 0 | 0 | 218 | num = map(int,raw_input().split)
if num[0]>num[1] :
print str(num[0]) + " > " + str(num[1])
elif num[0]<num[1] :
print str(num[0]) + " < " + str(num[1])
else :
print str(num[0]) + " == " + str(num[1]) | File "/tmp/tmp17ir3_5i/tmpsv5f9zmc.py", line 3
print str(num[0]) + " > " + str(num[1])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s903240701 | p02391 | u661290476 | 1481186983 | Python | Python3 | py | Runtime Error | 30 | 7436 | 105 | a,b=map(int,input().split())
s=""
if a>b:
s=">"
elif e<b:
s="<"
else:
s="=="
print("a",s,"b") | Traceback (most recent call last):
File "/tmp/tmp_mn6f863/tmp5xud2cld.py", line 1, in <module>
a,b=map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s126203665 | p02391 | u234837959 | 1481243430 | Python | Python3 | py | Runtime Error | 30 | 7576 | 138 | list = input()
a = int(list[0])
b = int(list[1])
if(a > b):
print("a > b")
elif(a == b):
print("a == b")
else:
print("a < b") | Traceback (most recent call last):
File "/tmp/tmpiy6ze18p/tmpxv9dvocu.py", line 1, in <module>
list = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s507131337 | p02391 | u234837959 | 1481243489 | Python | Python3 | py | Runtime Error | 20 | 7528 | 136 | list = input()
a = int(list[0])
b = int(list[1])
if a > b:
print("a > b")
elif a == b:
print("a == b")
else:
print("a < b") | Traceback (most recent call last):
File "/tmp/tmphb1s9pfe/tmp3wmkh90o.py", line 1, in <module>
list = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s802393358 | p02391 | u693424532 | 1481628643 | 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 a == b:
print(a == b) | File "/tmp/tmp5546i5k5/tmpf95rho5a.py", line 7
else a == b:
^
SyntaxError: expected ':'
| |
s698330230 | p02391 | u693424532 | 1481629114 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | a,b = list(map(int,input().split()))
if a < b:
print(a < b)
elif a > b:
print(a > b)
else a == b:
print(a == b) | File "/tmp/tmp0kdi4cli/tmp9nvgnsi9.py", line 7
else a == b:
^
SyntaxError: expected ':'
| |
s393861697 | p02391 | u693424532 | 1481629179 | 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 a == b:
print("a == b") | File "/tmp/tmpdzih532h/tmpo23izvfj.py", line 7
else a == b:
^
SyntaxError: expected ':'
| |
s255833738 | p02391 | u693424532 | 1481629194 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | a,b = list(map(int,input().split()))
if a < b:
print("a < b")
elif a > b:
print("a > b")
else a == b:
print("a == b") | File "/tmp/tmpr5r90rol/tmpfdnef_fk.py", line 7
else a == b:
^
SyntaxError: expected ':'
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.