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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s571428603 | p02392 | u671553883 | 1469516122 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | a,b,c = int[int(i) for i in input().split()]
if a < b < c:
print('YES')
else:
print('NO') |
s204279410 | p02392 | u671553883 | 1469516146 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | a,b,c = int[int(i) for i in input().split()]
if a < b < c:
print('Yes')
else:
print('No') |
s082828493 | p02392 | u085472528 | 1469516306 | Python | Python3 | py | Runtime Error | 0 | 0 | 89 | a, b, c = [int(i) for i input().split()]
if a<b<c:
print("yes")
else:
print("no") |
s170657100 | p02392 | u085472528 | 1469516338 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | a, b, c = [int(i) for i input().split()]
if a < b < c:
print("yes")
else:
print("no") |
s301767092 | p02392 | u216425054 | 1470625938 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | [a,b,c]=int(x) for x in input().split
if a>b and b>c:
print("Yes")
else:
print("No") |
s658755836 | p02392 | u216425054 | 1470626080 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | [a,b,c]=[int(x) for x in input().split]
if a>b and b>c:
print("Yes")
else:
print("No") |
s869960522 | p02392 | u216425054 | 1470626143 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | [a,b,c]=[int(x) for x in input().split]
if a<b<c:
print("Yes")
else:
print("No") |
s711744382 | p02392 | u892219101 | 1473439394 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | a,b,c=map(int,input().split())
if a<b:
if b<c:
print "Yes"
sys.exit()
print("No") |
s652516071 | p02392 | u362094064 | 1473918404 | Python | Python3 | py | Runtime Error | 0 | 0 | 131 | a, b = input().split(' ')
if int(a) > int(b):
print('a > b')
elif int(a) < int(b):
print('a < b')
else:
print('a == b') |
s345633760 | p02392 | u362094064 | 1473919165 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | a, b, c, = input()split(' ')
if int(a) < int(b) < int(c):
print('yes')
else:
print('no') |
s193331309 | p02392 | u393305246 | 1474109035 | Python | Python | py | Runtime Error | 0 | 0 | 111 | inl=map(int. raw_input().split())
a=inl[0]
b=inl[1]
c=inl[2]
if a<b and b<c:
print "Yes"
else:
print "No" |
s193088368 | p02392 | u996758922 | 1476967495 | Python | Python | py | Runtime Error | 0 | 0 | 114 | l = input().split()
l = list(map(int, l))
if l[0] < l[1] and l[1] < l[2]:
print("Yes")
else:
print("No") |
s548662301 | p02392 | u967794515 | 1477838230 | Python | Python3 | py | Runtime Error | 0 | 0 | 112 | # coding: utf-8
# Here your code !
a,b,c = input().split()
if(a < B < c):
print('Yes')
else:
print('No') |
s075560008 | p02392 | u967904307 | 1478230050 | Python | Python | py | Runtime Error | 0 | 0 | 68 | a,b,c=map(int,raw_input().split(" ")
print a,b,c:("No","Yes")[a<b<c] |
s353048814 | p02392 | u326248180 | 1478757423 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | a, b, c = map(int, input().split())
if a < b amd b < c:
print("Yes")
else:
print("No") |
s773969995 | p02392 | u408216289 | 1479045088 | Python | Python | py | Runtime Error | 0 | 0 | 89 |
a = [int(s) for s in raw_input().split()]
if a > b > c:
print "Yes"
else
print "No" |
s655628545 | p02392 | u408216289 | 1479045134 | Python | Python | py | Runtime Error | 0 | 0 | 99 |
a = [int(s) for s in raw_input().split()]
if a[0] < a[1] < a[2]:
print "Yes"
else
print "No" |
s613225456 | p02392 | u725608708 | 1479357422 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | a,b,c = map(int,input().split())
if a < b < c:
print("Yes")
else:
print("No" |
s033579288 | p02392 | u165813232 | 1479357457 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | a.b.c = map(int.input().split())
if a < b < c:
print("Yes")
else:
print("No") |
s828168783 | p02392 | u250482563 | 1479357479 | Python | Python | py | Runtime Error | 0 | 0 | 85 | a, b, c = map (int, input().split())
if a < b < c:
print("Yes")
else:
print("No")
|
s823994082 | p02392 | u694307805 | 1479357541 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | a,b,c = map (int, input(),split())
if a < b and < c:
print("Yes")
else:
print("No") |
s846211773 | p02392 | u694307805 | 1479357582 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | a,b,c = map (int, input(),split())
if a < b < c:
print("Yes")
else:
print("No") |
s199969963 | p02392 | u982344959 | 1479358315 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | a,b,c=map(int,input(),split())
if a<b and b<c:
print("Yes")
else:
print("No")
|
s864363912 | p02392 | u234837959 | 1481243775 | Python | Python3 | py | Runtime Error | 0 | 0 | 132 | list = input().split(" ")
a,b,c = int(list[0]),int(list[1]),int(list[2])
if a < b && b < c:
print("YES")
else:
print("NO") |
s791302932 | p02392 | u493187281 | 1482676342 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | a=int(input())
b=int(input())
c=int(input())
if a<b<c:
print("Yes")
else:
print("NO") |
s854585521 | p02392 | u493187281 | 1482676431 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | a=int(input())
b=int(input())
c=int(input())
if a<b<c:
print("Yes")
else:
print("NO") |
s916942977 | p02392 | u019678978 | 1482898079 | Python | Python | py | Runtime Error | 0 | 0 | 84 | a,b,c = map(int, raw_input())
if a < b < c :
print("Yes")
else :
print("No") |
s173350749 | p02392 | u159126725 | 1483939217 | Python | Python | py | Runtime Error | 0 | 0 | 97 | a, b, c = map(int, raw_input().split())
if a < b && b < c :
print 'Yes'
else :
print 'No' |
s924046015 | p02392 | u519227872 | 1485262636 | Python | Python | py | Runtime Error | 0 | 0 | 92 | a,b,c = map(int,raw_input().split(" "))
if a < b and b < c:
print "Yes"
else
print "No" |
s230668965 | p02392 | u138546245 | 1485936986 | Python | Python3 | py | Runtime Error | 0 | 0 | 475 | def isIncremental(a, b, c):
"""
a: int
b: int
c: int
returns "Yes" if a < b < c, otherwise "No"
>>> isIncremental(1, 3, 8)
'Yes'
>>> isIncremental(3, 8, 1)
'No'
>>> isIncremental(1, 1, 1)
'No'
"""
if a >= b:
return "No"
elif b >= c:
return "No"
else:
return "Yes"
if __name__ == '__main__':
ival = input().split(' ')
print(isIncremental(int(ival[0]), int(ival[1]), int(ival[2])) |
s902304221 | p02392 | u548155360 | 1487146959 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | nums=list(map(int,input().split()))
if nums[3] > nums[2] and nums[2] > nums[1]:
print("Yes")
else:
print("No") |
s793240141 | p02392 | u024715419 | 1487924197 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | a,b,c = int(input())
if a < b and b < c:
print("Yes")
else:
print("No") |
s827204843 | p02392 | u024715419 | 1487924380 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | l = int(input())
if l[0] < l[1] and l[1] < l[2]:
print("Yes")
else:
print("No") |
s478062235 | p02392 | u024715419 | 1487924452 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | l = input()
if int(l[0]) < int(l[1]) and int(l[1]) < int(l[2]):
print("Yes")
else:
print("No") |
s961082452 | p02392 | u024715419 | 1487924507 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | l = input()
if int(l[0]) < int(l[1]) and int(l[1]) < int(l[2]):
print("Yes")
else:
print("No") |
s899908327 | p02392 | u775160104 | 1488187879 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | a, b, c = map(int, input().split())
if a < b and b < c: print("Yes")
else: print("No) |
s848102582 | p02392 | u072398496 | 1489373408 | Python | Python | py | Runtime Error | 0 | 0 | 42 | a=input b=input c=input
if a<b<c print Yes |
s902667657 | p02392 | u300641790 | 1490880310 | 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") |
s675782499 | p02392 | u208157605 | 1491342366 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | a, b, c = list(map(int, input()))
if a < b and b < c:
print("Yes")
else:
print("No") |
s731230234 | p02392 | u884445603 | 1492575381 | Python | Python3 | py | Runtime Error | 0 | 0 | 261 | l = [int(x) for x in input().split()]
a = l[0]
b = l[1]
if a < b :
print("a < b")
elif a > b :
print("a > b")
else:
print("a == b")
l = [int(x) for x in input().split()]
a = l[0]
b = l[1]
c = l[2]
if a < b < c:
print("Yes")
else:
print("No") |
s207593916 | p02392 | u503144441 | 1492760475 | Python | Python3 | py | Runtime Error | 0 | 0 | 123 | def yesno(a,b,c):
0<=a,b,c<=100
if a<b<c:
print("Yes")
else:
print("No")
yesno(a,b,c)
|
s258003379 | p02392 | u321712183 | 1494239166 | Python | Python | py | Runtime Error | 0 | 0 | 117 | # coding:utf-8
x=map(int,(raw_input().split()))
if int(x[0]) < x[1]) < x[2]:
print("Yes")
else:
print("No") |
s028283027 | p02392 | u321712183 | 1494239231 | Python | Python | py | Runtime Error | 0 | 0 | 112 | # coding:utf-8
x=map(int,(raw_input().split()))
if x[0] < x[1]) < x[2]:
print("Yes")
else:
print("No") |
s672789455 | p02392 | u650790815 | 1494289405 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | a,b,c = map(int,input().split())
if a < b < c:
print('Yes')
elde:
print('No') |
s727313691 | p02392 | u628279257 | 1494585896 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | s= input().split()
a=int(s.[0])
b=int(s.[1])
c=int(s.[2])
if((a>b)and(b>c)):
print("Yes")
else:
print("No") |
s435159859 | p02392 | u628279257 | 1494585944 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | s= input().split()
a=int(s.[0])
b=int(s.[1])
c=int(s.[2])
if((c>b)and(b>a)):
print("Yes")
else:
print("No") |
s377461908 | p02392 | u628279257 | 1494586026 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | s=input().split()
a=int(s.[0])
b=int(s.[1])
c=int(s.[2])
if((c>b)and(b>a)):
print("Yes")
else:
print("No") |
s919358380 | p02392 | u675844759 | 1496799214 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | a, b, c = [int(i) for i in intput().split()]
if a < b < c:
print("Yes")
else:
print("No") |
s280752068 | p02392 | u580737984 | 1497507312 | Python | Python3 | py | Runtime Error | 0 | 0 | 313 | i = j = k = 0
n = ''
m = ''
l = ''
line = input()
while line[i] != ' ':
n = n + line[i]
i += 1
while line[i] != ' ':
l = l + line[i]
i += 1
while i < len(line):
m = m + line[i]
i += 1
n = int(n)
l = int(l)
m = int(m)
if n < l and l < m:
print("Yes")
else:
print("No") |
s693804190 | p02392 | u261533743 | 1497509340 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 |
[a,b,c] = map(int,intput().split())
print({True: 'Yes', False: 'No'}[a < b < c])
|
s089547021 | p02392 | u486972540 | 1497511649 | Python | Python3 | py | Runtime Error | 0 | 0 | 89 | a,b,c = [int(i) for i in input() split()]
if a < b < c:
print("YES)
else:
print("NO") |
s642109375 | p02392 | u486972540 | 1497511680 | Python | Python3 | py | Runtime Error | 0 | 0 | 89 | a,b,c = [int(i) for i in input() split()]
if a < b < c:
print("Yes)
else:
print("No") |
s130889164 | p02392 | u486972540 | 1497511717 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | a,b,c = [int(i) for i in input() split()]
if a < b < c:
print("Yes")
else:
print("No") |
s856878573 | p02392 | u486972540 | 1497511745 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | a,b,c = [int(i) for i in input() split()]
if a < b < c:
print('Yes')
else:
print('No') |
s638325517 | p02392 | u169794024 | 1497512763 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | a,b,c,=map(int,input().split())
if a<b<c:
print(Yes)
else:
print(No) |
s819555772 | p02392 | u831971779 | 1497515762 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | [a,b,c]=int(input().split())
if a < b < c:
print("Yes")
else:
print("No") |
s600382806 | p02392 | u692161606 | 1497524756 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | a, b, c = map(int ,input().split())
if a < b < c:
print(Yes)
else:
print(No) |
s063638664 | p02392 | u386861275 | 1497966949 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | a,b,c= map(int, input().split())
if a<b && b<c:
print("Yes")
else
print("No") |
s320387241 | p02392 | u911624488 | 1498029960 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | a, b, c = [int(i) for i in input().split()]
if a < b < c:
print "Yes"
else:
print "No" |
s855028969 | p02392 | u911624488 | 1498030098 | Python | Python3 | py | Runtime Error | 0 | 0 | 110 | a, b, c = [int(i) for i in input().split()]
if a < b < c:
print "Yes"
else:
print "No" |
s802332416 | p02392 | u911624488 | 1498030203 | Python | Python | py | Runtime Error | 0 | 0 | 116 | a, b, c = [int(i) for i in input().split()]
if a < b < c:
print ("Yes")
else:
print ("No") |
s253430876 | p02392 | u911624488 | 1498030242 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | a, b, c = [int(i) for i in input().split()]
if a < b < c:
print ("Yes")
else:
print ("No") |
s637783325 | p02392 | u363648401 | 1498030344 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | int(input(i))
if a<b<c :
return YES
else:
return NO |
s158228243 | p02392 | u818923713 | 1498031328 | Python | Python3 | py | Runtime Error | 0 | 0 | 135 | a, b, c = map(int, input().split())
if a < b < c:
print('a < b < c')
elif a > b > c:
print('a > b > c')
else:
print('none') |
s714407703 | p02392 | u818923713 | 1498031381 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | a, b, c = map(int, input().split())
if a < b < c:
print('yes')
elif a > b > c:
print('no')
else:
print('none') |
s750552784 | p02392 | u818923713 | 1498031422 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | a, b, c = map(int, input().split())
if a < b < c:
print('YES')
elif a > b > c:
print('NO')
else:
print('none') |
s396758933 | p02392 | u818923713 | 1498031459 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | a, b, c = map(int, input().split())
if a < b < c:
print('Yes')
elif a > b > c:
print('No')
else:
print('none') |
s363716282 | p02392 | u818923713 | 1498031558 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | a, b, c = map(int, input().split())
if a < b < c:
print('Yes')
else:
print('No')
|
s627154169 | p02392 | u818923713 | 1498031599 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | a, b, c = map(int, input().split())
if a < b < c:
print("Yes")
else:
print("No")
|
s296639710 | p02392 | u923630348 | 1498031731 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | a,b,c, = map(int, input().split())
if a > b > c >:
print("Yes")
else:
print("No") |
s747833968 | p02392 | u818923713 | 1498031760 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | a, b, c = map(int, input().split())
if a < b < c:
print("Yes")
else:
print("No") |
s253981841 | p02392 | u553951959 | 1499498182 | Python | Python3 | py | Runtime Error | 0 | 0 | 107 | a = int(input () )
b = int(input () )
c = int(input () )
if a < b < c:
print("Yes")
else:
print("No") |
s322485622 | p02392 | u043639882 | 1499840298 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | a,b,c=map(int,input().split())
if a < b < c:
print("Yes")
Print ("No") |
s332481660 | p02392 | u043639882 | 1499840384 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | a,b,c=map(int,input().split())
if a < b < c:
print("Yes")
print("No") |
s936399534 | p02392 | u447009770 | 1500276962 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | a, b, c = map(int, input().split())
if a < b:
if b < c:
print('Yes')
else:
print('No')
else:
print('No') |
s249537507 | p02392 | u295538678 | 1500432174 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | w,h,x,y,r =[int(i) for i in input().split()]
if(w < x+r ):
print('YES')
elif(h < y+r):
print('YES')
else:
print('NO') |
s998442450 | p02392 | u888737393 | 1500681475 | Python | Python | py | Runtime Error | 0 | 0 | 88 | A, B, C = list(ma(int, input().split()))
if A<B<C:
print('Yes')
else:
prit('No') |
s064214111 | p02392 | u471400255 | 1500698793 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | memo = input().spllit()
a,b,c = [int(x) for x in memo]
if(a < b && b < c):
print("Yes")
else:
print("No") |
s419804088 | p02392 | u471400255 | 1500698868 | Python | Python3 | py | Runtime Error | 0 | 0 | 112 | memo = input().split()
a,b,c = [int(x) for x in memo]
if(a < b && b < c):
print("Yes")
else:
print("No") |
s161914540 | p02392 | u471400255 | 1500698916 | Python | Python3 | py | Runtime Error | 0 | 0 | 112 | memo = input().split()
a,b,c = [int(x) for x in memo]
if(a < b && b < c):
print("Yes")
else:
print("No") |
s975915324 | p02392 | u471400255 | 1500699114 | Python | Python3 | py | Runtime Error | 0 | 0 | 112 | memo = input().split()
a,b,c = [int(x) for x in memo]
if a < b && b < c :
print("Yes")
else:
print("No") |
s662550113 | p02392 | u917268529 | 1501146913 | Python | Python3 | py | Runtime Error | 0 | 0 | 224 | <?php
while($line=fgets(STDIN)){
$line = rtrim($line);
$data = explode(" ", $line);
if ($data[0] < $data[1] && $data[1] < $data[2]) {
echo "Yes". PHP_EOL;
} else {
echo "No" . PHP_EOL;
}
} |
s690000263 | p02392 | u120602885 | 1501907018 | Python | Python3 | py | Runtime Error | 0 | 0 | 133 | tmp = input()
tmp = tmp.split(" ")
x,y = map(int,tmp)
if x == y:
print("a == b")
elif x > y:
print("a > b")
else:
print("a < b") |
s907607262 | p02392 | u142321256 | 1502459384 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | abc = input().split()
if(int(abc[0])< int(abc[1]) and int(abc[1] < int(abc[2])) ):
print('Yes')
else:
print('No') |
s180743300 | p02392 | u506705885 | 1503413820 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | num_list=input.split()
a=int(num_list[0])
b=int(num_list[1])
c=int(num_list[2])
if a>b>c:
print('Yes')
else :
print('No') |
s926862807 | p02392 | u096862087 | 1503551675 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | a,b,c = map(int, input.split())
if a < b <c:
print("Yes")
else:
print("No") |
s581908685 | p02392 | u096862087 | 1503551729 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | a,b,c = map(int, input.split())
if a < b <c:
print("Yes")
else:
print("No") |
s095492593 | p02392 | u096862087 | 1503568905 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | a,b,c = map(int, input().split)
if a<b<c:
print("Yes")
else:
print("No") |
s902358678 | p02392 | u096862087 | 1503569047 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | a,b,c = map(int, input().split)
if a<b and b<c:
print("Yes")
else:
print("No") |
s272479681 | p02392 | u096862087 | 1503569646 | Python | Python | py | Runtime Error | 0 | 0 | 81 | a,b,c = map(int,input().split())
result = "Yes" if a<b<c else "No"
print(result) |
s658239790 | p02392 | u088372268 | 1505535643 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | l1 = list(input().split(" "))
l2 = list(input().split(" "))
l1.sort()
if l1 == l2:
print("Yes")
else:
print("No") |
s594748349 | p02392 | u664228906 | 1506308090 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | a,b,c=map(int, input().split())
if a<b && b<c: print("Yes")
else: print("No") |
s770437354 | p02392 | u825994660 | 1507525593 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | z = input()
a,b,c = z.split()
if int(a) < int(b) && int(b) < int(c):
print("Yes")
else:
print("No") |
s702975912 | p02392 | u292798607 | 1508215923 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | nums = input().split()
if nums[0] =< nums[1] and nums[1] =< nums[2]:
print("Yes")
else:
print("No") |
s512776676 | p02392 | u292798607 | 1508217007 | Python | Python3 | py | Runtime Error | 0 | 0 | 125 | nums = input().split()
if int(nums[0]) < int(nums[1]) and int(num[1]) < int(nums[2]):
print("Yes")
else:
print("No") |
s335136682 | p02392 | u292798607 | 1508217056 | Python | Python3 | py | Runtime Error | 0 | 0 | 126 | nums = input().split()
if int(nums[0]) < int(nums[1]) and int(numS[1]) < int(nums[2]):
print("Yes")
else:
print("No") |
s064127884 | p02392 | u574330094 | 1508406727 | Python | Python | py | Runtime Error | 0 | 0 | 82 | list = int[a, b, c]
if(int[a] < int[b] < int[c])
print("Yes")
else()
print("No") |
s845525006 | p02392 | u574330094 | 1508406809 | Python | Python | py | Runtime Error | 0 | 0 | 82 | list = int[a, b, c]
if(int[a] < int[b] < int[c])
print("Yes")
else()
print("No") |
s148241618 | p02392 | u574330094 | 1508406870 | Python | Python | py | Runtime Error | 0 | 0 | 81 | list = int[a, b, c]
if(int[a] < int[b] < int[c])
print("Yes")
else(print("No")) |
s258940352 | p02392 | u104114903 | 1509511733 | Python | Python3 | py | Runtime Error | 0 | 0 | 147 | inputStr = input().split(' ')
a = int(inputStr[0])
b = int(inputStr[1])
c = int(inputStr[2])
if(a < b && b < c):
print("Yes")
else:
print("No") |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.