s_id
stringlengths
10
10
p_id
stringlengths
6
6
u_id
stringlengths
10
10
date
stringlengths
10
10
language
stringclasses
1 value
original_language
stringclasses
11 values
filename_ext
stringclasses
1 value
status
stringclasses
1 value
cpu_time
stringlengths
1
5
memory
stringlengths
1
7
code_size
stringlengths
1
6
code
stringlengths
1
539k
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
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
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
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
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
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"
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)
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")
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")
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")
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")
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")
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")
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")
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")
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')
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")
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')
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'
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") }
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)
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")
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")
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")
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")
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")
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)
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)
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")
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")
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")
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")
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)
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")
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")
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)
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)
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")
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)
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")
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")
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")
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")
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")
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")
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")
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")
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")
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")
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")
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)
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")
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")
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")
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)
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)
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")
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")
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")
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")
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")
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"
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')
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')
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"
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"
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')
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")
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)
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"
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")
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")
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")
s896827771
p02391
u982344959
1477544761
Python
Python3
py
Runtime Error
0
0
3707
data:image/jpeg;base64,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
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")
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")
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))
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))
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))
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))
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))
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))
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=' < ')
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")
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")
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)
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")
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")
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')
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')
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')
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")
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])
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")
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")
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")
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)
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)
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")
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")