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
s579346328
p02391
u944658202
1527226403
Python
Python3
py
Runtime Error
0
0
121
a=map(int,input().split()) if a[0]<a[1]: print("a < b") elif a[0]>a[1]: print("a > b") else: print("a == b")
s621833947
p02391
u007066325
1527451092
Python
Python3
py
Runtime Error
0
0
153
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")
s586104482
p02391
u007066325
1527451135
Python
Python3
py
Runtime Error
0
0
144
a,b = map (int, input().split) if a<b: print("a < b") else a>b: print("a > b") else a == b: print("a == b")
s879859719
p02391
u007066325
1527451151
Python
Python3
py
Runtime Error
0
0
144
a,b = map (int, input().split) if a<b: print("a < b") elif a>b: print("a > b") else a == b: print("a == b")
s800031788
p02391
u007066325
1527451175
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 a == b: print("a == b")
s153647177
p02391
u007066325
1527451190
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")
s555697245
p02391
u138224929
1527744973
Python
Python3
py
Runtime Error
0
0
360
#include <iostream> #include <sstream> #include <math.h> #include <algorithm> #include <string> using namespace std; int main(){ int a,b ; cin >> a >> b; if(a == b){ cout << a << "=="<< b << endl; } else if ( a < b){ cout << a << "<" << b << endl; } else { cout << a << ">" << b << endl; } return 0; }
s445346938
p02391
u227344542
1528268957
Python
Python3
py
Runtime Error
0
0
80
if a>b: print ("a>b") if a==b: print ("a==b") if a<b: print ("a<b")
s516806910
p02391
u227344542
1528269060
Python
Python3
py
Runtime Error
0
0
80
if a>b: print ("a>b") if a==b: print ("a==b") if a<b: print ("a<b")
s996441365
p02391
u227344542
1528269077
Python
Python3
py
Runtime Error
0
0
81
if a>b: print ("a>b") elif a==b: print ("a==b") else : print ("a<b")
s339978813
p02391
u119807026
1529740229
Python
Python3
py
Runtime Error
0
0
110
c = input() a, b = (int, c.split()) if a > b: print("a > b") elif a < b: print("b>a") else: print("a == b")
s193278285
p02391
u987236471
1530468466
Python
Python3
py
Runtime Error
0
0
130
a,b = (int(x) for in input().split()) if a > b: print(“a > b”) if a < b: print(“a < b”) if a = b: print(“a = b”)
s230684238
p02391
u987236471
1530468551
Python
Python3
py
Runtime Error
0
0
129
a,b = (int(x) for in input().split()) if a > b: print(“a > b”) elif a < b: print(“a < b”) else: print(“a == b”)
s056253783
p02391
u987236471
1530468577
Python
Python3
py
Runtime Error
0
0
131
a,b = map(int, for in input().split()) if a > b: print(“a > b”) elif a < b: print(“a < b”) else: print(“a == b”)
s345032065
p02391
u987236471
1530468606
Python
Python3
py
Runtime Error
0
0
131
a, b = map(int, for in input().split()) if a > b: print(“a > b”) elif a < b: print(“a < b”) else: print(“a == b”)
s218340721
p02391
u987236471
1530468620
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”)
s849611963
p02391
u987236471
1530468637
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”)
s337104699
p02391
u987236471
1530468649
Python
Python3
py
Runtime Error
0
0
121
a,b = map(int,input().split()) if a > b: print(“a > b”) elif a < b: print(“a < b”) else: print(“a == b”)
s945632725
p02391
u987236471
1530468662
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”)
s150153387
p02391
u987236471
1530468733
Python
Python3
py
Runtime Error
0
0
134
#coding utf=8 a,b = map(int,input().split()) if a > b: print(“a > b”) elif a < b: print(“a < b”) else: print(“a == b”)
s317181575
p02391
u987236471
1530468886
Python
Python3
py
Runtime Error
0
0
131
#coding utf=8 a,b = map(int,input().split()) if a > b: print(“a > b”) elif a < b: print(“a < b”) else: print(“a == b”)
s110410998
p02391
u987236471
1530468914
Python
Python3
py
Runtime Error
0
0
157
#coding utf-8 x,y=map(int,input() .split()) if x > y:     print("a > b") elif x==y:         print("a == b") else:         print("a < b")
s171450859
p02391
u987236471
1530468938
Python
Python3
py
Runtime Error
0
0
143
x,y=map(int,input() .split()) if x > y:     print("a > b") elif x==y:         print("a == b") else:         print("a < b")
s808990076
p02391
u987236471
1530468961
Python
Python3
py
Runtime Error
0
0
143
x,y=map(int,input() .split()) if x > y:     print("a > b") elif x==y:         print("a == b") else:         print("a < b")
s486021436
p02391
u987236471
1530468977
Python
Python
py
Runtime Error
0
0
143
x,y=map(int,input() .split()) if x > y:     print("a > b") elif x==y:         print("a == b") else:         print("a < b")
s236635265
p02391
u580310523
1379807842
Python
Python
py
Runtime Error
0
0
136
a = raw_input('input a:') b = raw_input('input b:') if a > b : print("a > b") if a < b : print("a < b") if a == b : print("a == b")
s958326557
p02391
u580310523
1379808123
Python
Python
py
Runtime Error
0
0
115
a = raw_input() b = raw_input() if a > b : print("a > b") if a < b : print("a < b") if a == b : print("a == b")
s515183186
p02391
u580310523
1379808150
Python
Python
py
Runtime Error
0
0
108
a = input() b = input() if a > b : print("a > b") if a < b : print("a < b") if a == b : print("a == b")
s956780397
p02391
u580310523
1379808220
Python
Python
py
Runtime Error
0
0
105
a = input() b = input() if a > b : print "a > b" if a < b : print "a < b" if a == b : print "a == b"
s614019176
p02391
u580310523
1379808261
Python
Python
py
Runtime Error
0
0
100
a, b = raw_input() if a > b : print "a > b" if a < b : print "a < b" if a == b : print "a == b"
s803029601
p02391
u580310523
1379808454
Python
Python
py
Runtime Error
0
0
117
a, b = map(raw_input().split(" ")): if a > b : print "a > b" if a < b : print "a < b" if a == b : print "a == b"
s762645529
p02391
u580310523
1379808517
Python
Python
py
Runtime Error
0
0
122
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"
s969204335
p02391
u580310523
1379808540
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"
s680031803
p02391
u580310523
1379808616
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'
s047182115
p02391
u580310523
1379808785
Python
Python
py
Runtime Error
0
0
114
a, b = map(int, raw_input().split()): if a > b : print 'a > b' elif a < b : print 'a < b' else: print 'a == b'
s201851532
p02391
u580310523
1379808844
Python
Python
py
Runtime Error
0
0
112
a, b = map(int, raw_input().split()): if a > b: print 'a > b' elif a < b: print 'a < b' else: print 'a == b'
s870866344
p02391
u580310523
1379808892
Python
Python
py
Runtime Error
0
0
111
a, b = map(int, raw_input().split()): if a > b: print 'a > b' elif a < b: print 'a < b' else: print 'a == b'
s993142740
p02391
u580310523
1379808932
Python
Python
py
Runtime Error
0
0
110
a, b = map(int, raw_input().split()): if a > b: print 'a > b' elif a < b: print 'a < b' else: print 'a == b'
s293917693
p02391
u580310523
1379809014
Python
Python
py
Runtime Error
0
0
108
a, b=map(int, raw_input().split()): if a > b: print 'a > b' elif a < b: print 'a < b' else: print 'a == b'
s530229571
p02391
u580310523
1379809039
Python
Python
py
Runtime Error
0
0
107
a,b=map(int, raw_input().split()): if a > b: print 'a > b' elif a < b: print 'a < b' else: print 'a == b'
s689550428
p02391
u580310523
1379809091
Python
Python
py
Runtime Error
0
0
106
a,b=map(int,raw_input().split()): if a > b: print 'a > b' elif a < b: print 'a < b' else: print 'a == b'
s259264206
p02391
u580310523
1379809144
Python
Python
py
Runtime Error
0
0
105
a,b=map(int,raw_input().split()) if a > b: print 'a > b' elif a < b: print 'a < b' else: print 'a == b'
s280329681
p02391
u580310523
1379809518
Python
Python
py
Runtime Error
0
0
105
a,b=map(int,raw_input().split()) if a > b: print 'a > b' elif a < b: print 'a < b' else: print 'a == b'
s833447597
p02391
u580310523
1379809546
Python
Python
py
Runtime Error
0
0
105
a,b=map(int,raw_input().split()) if a > b: print 'a > b' elif a < b: print 'a < b' else: print 'a == b'
s627697165
p02391
u441419639
1382814112
Python
Python
py
Runtime Error
0
0
92
a, b, c = map(int,raw_input().split()) if (a < b < c): print 'Yes' else: print 'No'
s306027488
p02391
u633068244
1393314094
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" end
s755697102
p02391
u633068244
1393314120
Python
Python
py
Runtime Error
0
0
114
a,b = map(int, raw_input().split()) if a > b: print "a > b" elif a < b: print "a < b" else print "a == b"
s892896237
p02391
u633068244
1393314175
Python
Python
py
Runtime Error
0
0
116
a,b=map(int, raw_input().split()) if a > b: print "a > b" elif a < b: print "a < b" else print "a == b"
s634535571
p02391
u633068244
1393913387
Python
Python
py
Runtime Error
0
0
110
a, b = gets.chomp.split(" ").to_i if a < b puts "a < b" elif a > b puts "a > b" else puts "a == b"
s099322493
p02391
u633068244
1393913472
Python
Python
py
Runtime Error
0
0
152
File Edit Options Buffers Tools Help a, b = gets.chomp.split(" ").to_i if a < b puts "a < b" elsif a > b puts "a > b" else puts "a == b" end
s490703816
p02391
u633068244
1393913483
Python
Python
py
Runtime Error
0
0
115
a, b = gets.chomp.split(" ").to_i if a < b puts "a < b" elsif a > b puts "a > b" else puts "a == b" end
s569457846
p02391
u633068244
1393913517
Python
Python
py
Runtime Error
0
0
125
a, b = gets.chomp.split(" ") a.to_i; b.to_i if a < b puts "a < b" elsif a > b puts "a > b" else puts "a == b" end
s562772369
p02391
u633068244
1393913542
Python
Python
py
Runtime Error
0
0
132
a, b = gets.chomp.split(" ") a = a.to_i b = b.to_i if a < b puts "a < b" elsif a > b puts "a > b" else puts "a == b" end
s812679219
p02391
u633068244
1393913568
Python
Python
py
Runtime Error
0
0
126
a, b = gets.split(" ") a = a.to_i b = b.to_i if a < b puts "a < b" elsif a > b puts "a > b" else puts "a == b" end
s544832135
p02391
u814387366
1394451676
Python
Python
py
Runtime Error
0
0
94
a,b=map(int,raw_input().split()) if a<b: print "a<b" elif a>b print "a>b" else print "a==b"
s309221573
p02391
u814387366
1394451709
Python
Python
py
Runtime Error
0
0
94
a,b=map(int,raw_input().split()) if a<b: print "a<b" elif a>b print "a>b" else print "a==b"
s697729643
p02391
u814387366
1394451709
Python
Python
py
Runtime Error
0
0
94
a,b=map(int,raw_input().split()) if a<b: print "a<b" elif a>b print "a>b" else print "a==b"
s651703832
p02391
u814387366
1394451709
Python
Python
py
Runtime Error
0
0
94
a,b=map(int,raw_input().split()) if a<b: print "a<b" elif a>b print "a>b" else print "a==b"
s739570563
p02391
u814387366
1394451709
Python
Python
py
Runtime Error
0
0
94
a,b=map(int,raw_input().split()) if a<b: print "a<b" elif a>b print "a>b" else print "a==b"
s542629378
p02391
u971748390
1398067839
Python
Python
py
Runtime Error
0
0
109
a,b= map(int,raw_input().split()); if a<b ; print "a<b"; else if a>b ; print "a>b"; else print "a==b" ;
s785538494
p02391
u971748390
1398068050
Python
Python
py
Runtime Error
0
0
109
a,b= map(int,raw_input().split()); if a<b ; print 'a<b'; else if a>b ; print 'a>b'; else print 'a==b' ;
s343127452
p02391
u971748390
1398068276
Python
Python
py
Runtime Error
0
0
106
a,b= map(int,raw_input().split()); if a<b ; print 'a<b'; elif a>b ; print 'a>b'; else print 'a==b' ;
s885136795
p02391
u971748390
1398068306
Python
Python
py
Runtime Error
0
0
106
a,b= map(int,raw_input().split()); if a<b : print 'a<b'; elif a>b : print 'a>b'; else print 'a==b' ;
s219076636
p02391
u971748390
1398068415
Python
Python
py
Runtime Error
0
0
102
a,b= map(int,raw_input().split()) if a<b : print 'a<b' elif a>b print 'a>b' else: print 'a==b'
s768298364
p02391
u547448138
1402144793
Python
Python
py
Runtime Error
0
0
110
a, b = map(int, raw_input().split()) if a > b: print "a > b" elif a < b: print "a < b" else print "a == b"
s492894848
p02391
u547448138
1402144977
Python
Python
py
Runtime Error
0
0
110
a, b = map(int, raw_input().split()) if a > b: print 'a > b' elif a < b: print 'a < b' else print 'a == b'
s670002355
p02391
u547448138
1402144985
Python
Python
py
Runtime Error
0
0
110
a, b = map(int, raw_input().split()) if a > b: print 'a > b' elif a < b: print 'a < b' else print 'a == b'
s498567988
p02392
u800021849
1531464776
Python
Python3
py
Runtime Error
0
0
87
a, b, c = map(int, input.split()) if a < b < c: print("Yes") else: print("No")
s753303919
p02392
u404682284
1535007912
Python
Python3
py
Runtime Error
0
0
163
package main import ( "fmt" ) func main(){ var a, b, c int fmt.Scan(&a, &b, &c) if a < b && b < c{ fmt.Printf("Yes\n") } else{ fmt.Printf("No\n") } }
s307188875
p02392
u404682284
1535007998
Python
Python3
py
Runtime Error
0
0
163
package main import ( "fmt" ) func main(){ var a, b, c int fmt.Scan(&a, &b, &c) if a < b && b < c{ fmt.Printf("Yes\n") } else { fmt.Printf("No\n") } }
s808330370
p02392
u414655445
1540286609
Python
Python
py
Runtime Error
0
0
111
a = int(input()) b = int(input()) c = int(input()) if a < b and b < c: print('Yes') else: print('No')
s196081215
p02392
u184749404
1540385651
Python
Python3
py
Runtime Error
0
0
57
a,b,c=map(int,input().split()) if a < b < c: print(Yes)
s628583235
p02392
u394290028
1540619024
Python
Python3
py
Runtime Error
0
0
187
a = input().split(" ") if a[0] < a[1] and a[1] < a[2]: print("Yes") else: print("No")a = input().split(" ") if a[0] < a[1] and a[1] < a[2]: print("Yes") else: print("No")
s888834794
p02392
u394290028
1540619029
Python
Python3
py
Runtime Error
0
0
188
a = input().split(" ") if a[0] < a[1] and a[1] < a[2]: print("Yes") else: print("No")a = input().split(" ") if a[0] < a[1] and a[1] < a[2]: print("Yes") else: print("No")
s369477970
p02392
u394290028
1540619058
Python
Python3
py
Runtime Error
0
0
116
a = input().split(" ") if a[0] < a[1] and a[1] < a[2]: print("Yes") else: print("No")a = input().split(" ")
s419964337
p02392
u098862429
1541216370
Python
Python3
py
Runtime Error
0
0
91
a,b,c = map(int, input().split()) if a < b && b < c: print("Yes") else: print("No")
s841449471
p02392
u098862429
1541216414
Python
Python3
py
Runtime Error
20
5580
93
a, b, c = map(int, input().split()) if a < b and b < c: print("Yes") else: prin("No")
s062984318
p02392
u293957970
1541220995
Python
Python3
py
Runtime Error
0
0
92
a, b, c = map(int, input().spilit()) if a < b < c: print("Yes") else: print("No")
s462690551
p02392
u316246166
1545655841
Python
Python3
py
Runtime Error
0
0
136
a, b, c = input().split() a = int(a) b = int(b) c = int(c) if a < b: if b < c: print('Yes') else print('No')
s982373851
p02392
u498462680
1546087676
Python
Python3
py
Runtime Error
0
0
28
a,b,c= int(input().split())
s167000306
p02392
u498462680
1546224790
Python
Python3
py
Runtime Error
0
0
113
a,b,c = input().split() #a = int(a) b = int(b) c = int(c) if a < b < c: print("yes") else: print("no")
s557585990
p02392
u984892564
1551535170
Python
Python3
py
Runtime Error
0
0
115
string = input() a, b, c = map(int, (string.split(' '))) if a < b && b < c print('Yes') else: print('No')
s061446946
p02392
u651717882
1555943454
Python
Python3
py
Runtime Error
0
0
116
a,b,c = input().split() a =int(a) b = int(b) c = int(c) if a<B and b<c: print("Yes") else: print("No")
s767722607
p02392
u651717882
1555943705
Python
Python3
py
Runtime Error
0
0
114
abc = input().split() a =int(a) b = int(b) c = int(c) if a<B and b<c: print("Yes") else: print("No")
s802578306
p02392
u651717882
1555943737
Python
Python3
py
Runtime Error
0
0
129
abc = input().split() a =int(abc[0]) b = int(abc[1]) c = int(abc[2]) if a<B and b<c: print("Yes") else: print("No")
s011442687
p02392
u651717882
1555943788
Python
Python3
py
Runtime Error
0
0
114
abc = input().split() a =int(a) b = int(b) c = int(c) if a<b and b<c: print("Yes") else: print("No")
s337298734
p02392
u525395303
1555982296
Python
Python3
py
Runtime Error
0
0
71
a, b, c = gets.split.map(&:to_i) puts (a < b and b < c) ? "Yes" : "No"
s977986897
p02392
u158979022
1556008979
Python
Python3
py
Runtime Error
0
0
210
#include <iostream> using namespace std; int main(void){ int a, b, c; cin >> a >> b >> c; if(a < b && b < c) { cout << "Yes" << endl; } else { cout << "No" << endl; } }
s605909317
p02392
u994696641
1556329197
Python
Python3
py
Runtime Error
0
0
83
a, b, c = map(int, input().split()) print('%s', 'Yes' if a < b && b < c else 'No')
s253182191
p02392
u482227082
1556350500
Python
Python3
py
Runtime Error
0
0
112
array = input().split() if (int(array[0] > int(array[1] > int(array[2]): print("Yes") else: print("No")
s829991562
p02392
u482227082
1556350529
Python
Python3
py
Runtime Error
0
0
131
array = input().split() if (int(array[0] > int(array[1]) and int(array[1]) > int(array[2]): print("Yes") else: print("No")
s170806433
p02392
u482227082
1556350548
Python
Python3
py
Runtime Error
0
0
132
array = input().split() if (int(array[0]) > int(array[1]) and int(array[1]) > int(array[2]): print("Yes") else: print("No")
s600447846
p02392
u748884386
1556619375
Python
Python3
py
Runtime Error
0
0
79
a,b,c=map(int,input().split)) if a<b<c: print('Yes') else: print('No')
s688311374
p02392
u748884386
1556619389
Python
Python3
py
Runtime Error
0
0
81
a,b,c=map(int,input().split())) if a<b<c: print('Yes') else: print('No')
s056625547
p02392
u805716376
1556699225
Python
Python3
py
Runtime Error
0
0
68
a, b ,c = map(int, inpput().split()) if a < b < c: print('Yes')
s730825514
p02392
u967890409
1559007429
Python
Python3
py
Runtime Error
0
0
94
a,b = map(int, input().split()) print("a "+("==" if a == b else "<" if a < b else ">")+" b")
s802299180
p02392
u629874472
1559013615
Python
Python3
py
Runtime Error
0
0
96
a,b,c = [int(input()) for i in range(3)] if a<b and b<c: print('Yes') else: print('No')
s166885838
p02392
u629874472
1559013660
Python
Python3
py
Runtime Error
0
0
104
a,b,c = [int(input().split()) for i in range(3)] if a<b and b<c: print('Yes') else: print('No')
s398140179
p02392
u629874472
1559013883
Python
Python3
py
Runtime Error
0
0
117
li = [int(input().split()) for i in range(3)] if li[0]<li[1] and li[1]<li[2]: print('Yes') else: print('No')
s811538388
p02392
u535719732
1559186858
Python
Python3
py
Runtime Error
0
0
112
num = list(map(int,input().sprit())) if(num[0] < num[1]): if(num[1] < num[2]):print("Yes") else:print("No")