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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s148204705 | p02392 | u104114903 | 1509511817 | Python | Python | py | Runtime Error | 0 | 0 | 151 | inputStr = raw_input().split(' ')
a = int(inputStr[0])
b = int(inputStr[1])
c = int(inputStr[2])
if(a < b && b < c):
print("Yes")
else:
print("No") |
s111221293 | p02392 | u104114903 | 1509511969 | Python | Python3 | py | Runtime Error | 0 | 0 | 149 | inputStr = raw_input().split(' ')
a = int(inputStr[0])
b = int(inputStr[1])
c = int(inputStr[2])
if a < b & b < c:
print("Yes")
else:
print("No") |
s709550918 | p02392 | u650657239 | 1509778418 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 |
nums = [int(i) for i in input().split()]
if a < b and b < c:
print("Yes")
else:
print("No") |
s412562115 | p02392 | u409699893 | 1510738698 | 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") |
s697035637 | p02392 | u409699893 | 1510738765 | Python | Python | py | Runtime Error | 0 | 0 | 94 | a, b, c = map(int,raw_input().split())
if a > b and b > c:
print ("Yes")
else
print ("No") |
s151289433 | p02392 | u409699893 | 1510738907 | Python | Python | py | Runtime Error | 0 | 0 | 94 | a, b, c = map(int,raw_input().split())
if a < b and b < c:
print ("Yes")
else
print ("No") |
s293615334 | p02392 | u409699893 | 1510738947 | Python | Python | py | Runtime Error | 0 | 0 | 94 | a, b, c = map(int,raw_input().split())
if a < b and b < c:
print ('Yes')
else
print ('No') |
s717285165 | p02392 | u409699893 | 1510739006 | Python | Python | py | Runtime Error | 0 | 0 | 91 | a,b,c=map(int, raw_input().split())
if a < b and b < c:
print ('Yes')
else
print ('No') |
s784223083 | p02392 | u488038316 | 1511159394 | Python | Python | py | Runtime Error | 0 | 0 | 275 | # -*-coding:utf-8
import fileinput
import math
def main():
for line in fileinput.input():
a, b, c = map(int, line.strip().split())
if(a < b && b <c):
print('Yes')
else:
print('No')
if __name__ == '__main__':
main() |
s260826863 | p02392 | u488038316 | 1511159401 | Python | Python3 | py | Runtime Error | 0 | 0 | 275 | # -*-coding:utf-8
import fileinput
import math
def main():
for line in fileinput.input():
a, b, c = map(int, line.strip().split())
if(a < b && b <c):
print('Yes')
else:
print('No')
if __name__ == '__main__':
main() |
s170948462 | p02392 | u150984829 | 1513048812 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | a,b,c=map(int,input().split())
if a<b<c: print("Yes")
elif: print("No") |
s026860865 | p02392 | u150984829 | 1513083013 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | a,b,c=map(int,input().split())
print(a<b<c?"Yes":"No") |
s625035531 | p02392 | u150984829 | 1513083033 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | a,b,c=map(int,input().split())
d=a<b<c?"Yes":"No"
print(d) |
s315504336 | p02392 | u150984829 | 1513083042 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | a,b,c=map(int,input().split())
d=a<b<c ? "Yes" : "No"
print(d) |
s503126393 | p02392 | u423320231 | 1513348511 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | a,b,c = map(int,input().split())
if(a<b && b<c):
print("Yes")
else:
print("No") |
s412056599 | p02392 | u058433718 | 1513447128 | Python | Python | py | Runtime Error | 0 | 0 | 109 | data = input()
a, b, c = [int(i) for i in data.split()]
if a < b < c:
print('Yes')
else:
print('No') |
s508847151 | p02392 | u830563109 | 1513558506 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | a = int(input())
b = int(input())
c = int(input())
if (a < b < c):
print("Yes")
else:
print("No") |
s498402417 | p02392 | u830563109 | 1513558648 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | a = int(input())
b = int(input())
c = int(input())
if a < b < c:
print("Yes")
else:
print("No") |
s500369687 | p02392 | u830563109 | 1513559055 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | a = int(input())
b = int(input())
c = int(input())
if a,b,c == a < b < c:
print("Yes")
else:
print("No") |
s850944438 | p02392 | u830563109 | 1513559106 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | a = int(input())
b = int(input())
c = int(input())
if a < b < c:
print("Yes")
else:
print("No") |
s165724255 | p02392 | u830563109 | 1513559186 | Python | Python3 | py | Runtime Error | 0 | 0 | 106 | a = int(input())
b = int(input())
c = int(input())
if a < b < c:
print("Yes")
elif a > b > c:
print("No") |
s305735574 | p02392 | u830563109 | 1513559340 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | a,b,c = map(int(input).split)
if a < b < c:
print("Yes")
else:
print("No") |
s419777199 | p02392 | u830563109 | 1513559382 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | a,b,c = map(int, input(split))
if a < b < c:
print("Yes")
else:
print("No") |
s201018586 | p02392 | u830563109 | 1513559424 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | a,b,c = map(int, input()split))
if a < b < c:
print("Yes")
else:
print("No") |
s954544329 | p02392 | u830563109 | 1513559472 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | a,b,c = map(int, input().split())
if a < b < c:
print("Yes")
else:
print("No") |
s454746608 | p02392 | u830563109 | 1513559523 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | a, b, c = map(int, input().split())
if a < b < c:
print("Yes")
else:
print("No") |
s212111802 | p02392 | u457499538 | 1513777791 | Python | Python | py | Runtime Error | 0 | 0 | 93 | a,b,c = map(int, raw_input().split())
if a < b && b < c :
print "Yes"
else
print "No" |
s521852456 | p02392 | u009288816 | 1515240300 | Python | Python | py | Runtime Error | 0 | 0 | 225 | a = raw_input()
a = a.split()
for i in range(0,len(a)):
a[i] = int(a[i])
b = sorted(a)
for i in range(0,len(a)):
if(a[i] != b[i] or a[i] == a[i+1]):
print 'No'
break
if(i == len(a)-1):
print 'Yes'
|
s301976465 | p02392 | u179070318 | 1515918857 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | a,b,c = [int(x) for x input().split( )]
if a<b<c:
print('Yes')
else:
print('No')
|
s372575420 | p02392 | u265901776 | 1516105711 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | if a < b and b < c:
print("Yes")
else:
print("No")
|
s758765811 | p02392 | u265901776 | 1516105767 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | if a < b and b < c:
print("Yes")
else:
print("No")
|
s532155905 | p02392 | u139687801 | 1517681784 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | a,b,c = map(int, input().split(','))
if a < b and b < c:
print('Yes')
else:
print('No')
|
s654330156 | p02392 | u139687801 | 1517682108 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | a,b,c = map(int, input().split(','))
if a < b and b < c:
print('Yes')
else:
print('No')
|
s526719366 | p02392 | u225502267 | 1518353622 | Python | Python | py | Runtime Error | 0 | 0 | 176 | #include <stdio.h>
int main(){
int a, b, c;
scanf("%d %d %d", &a, &b, &c);
if(a < b || b < c){
printf("Yes\n");
}else{
printf("No\n");
}
}
|
s202442861 | p02392 | u959628716 | 1518353719 | Python | Python | py | Runtime Error | 0 | 0 | 45 |
a = sort(raw_input())
print a[0],a[1],a[2]
|
s611632544 | p02392 | u671760895 | 1518537770 | Python | Python | py | Runtime Error | 0 | 0 | 122 | l = map(int, raw_input().split())
a = l[0]
b = l[1]
c = l[2]
if a < b && b < c :
print('Yes')
else:
print('No')
|
s515483602 | p02392 | u225502267 | 1518706703 | Python | Python | py | Runtime Error | 0 | 0 | 176 | #include <stdio.h>
int main(){
int a, b, c;
scanf("%d %d %d", &a, &b, &c);
if(a < b || b < c){
printf("Yes\n");
}else{
printf("No\n");
}
}
|
s954330692 | p02392 | u373340964 | 1519108088 | Python | Python3 | py | Runtime Error | 0 | 0 | 110 | a = list(map(int, input()))
a.sort()
maped_list = map(str, a)
mojiretsu = ','.join( a )
print(mojiretsu)
|
s370706510 | p02392 | u373340964 | 1519108163 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | a = list(map(int, input()))
a.sort()
maped_list = map(str, a)
mojiretsu = ' '.join( a )
print(mojiretsu)
|
s254234441 | p02392 | u017435045 | 1520680946 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | a,b,c=map(int, input().split())
if a<b and b<c:
print(‘Yes’)
else:
print(’No’)
|
s961377535 | p02392 | u229478139 | 1521296904 | Python | Python3 | py | Runtime Error | 0 | 0 | 188 | def funcs(a, b, c):
x = int(a)
y = int(b)
z = int(c)
if x < y < z:
print("Yes")
else:
print("No")
tmp = input()
a, b = tmp.split(" ")
funcs(a, b)
|
s697722477 | p02392 | u921303861 | 1521410171 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | A = int(input())
if (0<=A and A<=100):
print("Yes")
else:
print("No")
|
s241194414 | p02392 | u921303861 | 1521410272 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | A = int(input())
if (0<=A and A<=100):
print("Yes")
else:
print("No")
|
s352427757 | p02392 | u464859367 | 1521711269 | Python | Python3 | py | Runtime Error | 0 | 0 | 131 | n = input().split()
n = n.split()
n = [int(i) for i in n]
if(n[0] < n[1] and n[1] < n[2]):
print("Yes")
else:
print("No")
|
s223082426 | p02392 | u621084859 | 1522373777 | Python | Python3 | py | Runtime Error | 0 | 0 | 95 | a=int(input())
b=int(input())
c=int(input())
if a < b < c:
print("yes")
else:
print("no")
|
s183067594 | p02392 | u621084859 | 1522382652 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | a=int(input())
b=int(input())
c=int(input())
if a < b < c:
print("yes")
else:
print("no")
|
s518747654 | p02392 | u621084859 | 1522383096 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | a=int(input())
b=int(input())
c=int(input())
if a < b and b < c:
print("Yes")
else:
print("No")
|
s102981662 | p02392 | u695099631 | 1523078996 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | num = raw_input().split(" ")
a = num[0]
b = num[1]
c = num[2]
if a<b and b<c:
print("Yes")
else:
print("No")
|
s754341411 | p02392 | u244493040 | 1523185648 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | a,b,c=map(int,input().split())
print([a<b<c]['No','Yes'])
|
s287835828 | p02392 | u781194524 | 1523860252 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | a,b,c=[int() for x in input().split]
if a<b:
if b<c:
print("Yes")
else:
print("No")
|
s469660581 | p02392 | u781194524 | 1523860273 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | a,b,c=[int() for x in input().split]
if a<b:
if b<c:
print("Yes")
elif:
print("No")
|
s030959146 | p02392 | u781194524 | 1523860481 | Python | Python | py | Runtime Error | 0 | 0 | 89 | a,b,c=[int(x) for x in input().split()]
if a<b<c:
print("Yes")
else:
print("No")
|
s664211943 | p02392 | u602702913 | 1523866768 | Python | Python3 | py | Runtime Error | 0 | 0 | 172 | #include <stdio.h>
int main(void){
int a,b,c;
scanf("%d %d %d",&a,&b,&c);
if (a<b<c){
printf("Yes\n");
}
else{
printf("No\n");
}
}
|
s772778896 | p02392 | u602702913 | 1523866776 | Python | Python3 | py | Runtime Error | 0 | 0 | 172 | #include <stdio.h>
int main(void){
int a,b,c;
scanf("%d %d %d",&a,&b,&c);
if (a<b<c){
printf("Yes\n");
}
else{
printf("No\n");
}
}
|
s879774315 | p02392 | u843169619 | 1523868935 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 |
a = list(map(input().split()))
if a[0] =< a[1] =< a[2]:
print('Yes')
else:
print('No')
|
s045356840 | p02392 | u843169619 | 1523869139 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 |
a = list(map(int,input().split())
if a[0] =< a[1] =< a[2]:
print('Yes')
else:
print('No')
|
s469911525 | p02392 | u843169619 | 1523869780 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 |
a = list(map(int, input().split()))
if a[0] =< a[1] =< a[2]:
print('Yes')
else:
print('No')
|
s864734263 | p02392 | u215863296 | 1524041434 | Python | Python3 | py | Runtime Error | 0 | 0 | 42 | print(A)
|
s594995671 | p02392 | u485986915 | 1524217975 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | a,b,c = map(int,input().split)
if a > b > c:
print("Yes")
else:
print("No")
|
s042490077 | p02392 | u876060624 | 1524668239 | Python | Python3 | py | Runtime Error | 0 | 0 | 89 | a,b,c = map(int,input().split())
if a < b and b < c :
print('Yes')
else
print('No')
|
s586344793 | p02392 | u876060624 | 1524668505 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | a,b,c = map(int,input().split())
if a < b and b < c :
print('Yes')
else:
print('No')
|
s948604441 | p02392 | u379340960 | 1524833369 | Python | Python | py | Runtime Error | 0 | 0 | 90 | a, b, c = map(int, input().split())
ans = "No"
if a < b < c:
ans = "Yes"
print (ans)
|
s201597134 | p02392 | u555852413 | 1526380400 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | import sys
a,b,c = map(int,sys.stdin.readline().split())
if a < b && b < c:
print("Yes")
else:
print("No")
|
s962205644 | p02392 | u527389300 | 1526621637 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | a, b ,c = map(int, input().split())
if a < b:
if b < c:
print("YES")
return
print('NO')
|
s786755340 | p02392 | u527389300 | 1526621655 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | a, b ,c = map(int, input().split())
if a < b:
if b < c:
print("YES")
else:
print('NO')
|
s384922545 | p02392 | u944658202 | 1527226794 | Python | Python3 | py | Runtime Error | 0 | 0 | 89 | a,b,c=map(int,input().split)
if a<b and b<a:
print("Yes")
else:
print("No")
|
s973522619 | p02392 | u007066325 | 1527451445 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | a,b,c = map (int, input().split())
if a < b && b < c:
print("Yes")
else:
print("No")
|
s256543841 | p02392 | u007066325 | 1527451522 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | a,b,c = map (int, input().split())
if a < b:
elif b<c:
print("Yes")
else:
print("No")
|
s666485712 | p02392 | u777126276 | 1529201312 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | a,b,c = map(int, input().split())
print "Yes" if a<b and b<c else "No"
|
s458135705 | p02392 | u119807026 | 1529741294 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | d = input()
a, b, c = map(d.split())
if (a < b) and (b < c):
print("Yes")
else:
print("No")
|
s738230169 | p02392 | u282635979 | 1362749213 | Python | Python | py | Runtime Error | 0 | 0 | 88 | x = map(int,raw_input().split(' '))
if a < b and b < c:
print('YES')
else:
print('NO') |
s301834862 | p02392 | u763301852 | 1363005988 | Python | Python | py | Runtime Error | 0 | 0 | 131 | a, b = map(int, raw_input().split())
s = ""
if a < b:
s = "a < b"
elif a > b:
s = "a > b"
else:
s = "a == b"
print(s) |
s282380497 | p02392 | u912237403 | 1371206866 | Python | Python | py | Runtime Error | 0 | 0 | 89 | a,b,c = map(int, raw_input().split()
if a<b and b<c:
c='Yes'
else:
c='No'
print c |
s664723836 | p02392 | u063179562 | 1389968185 | Python | Python | py | Runtime Error | 0 | 0 | 76 | a,b,c = map(int,raw_input())
if a<b<c:
print "YES"
else:
print "NO" |
s236766733 | p02392 | u633068244 | 1393314463 | Python | Python | py | Runtime Error | 0 | 0 | 107 | a,b,c = map(int, raw_input().split())
if a < b:
if b < c:
print "Yes"\n
else:
print "No"\n |
s365955564 | p02392 | u633068244 | 1393913846 | Python | Python | py | Runtime Error | 0 | 0 | 114 | a, b, c = gets.split(" ")
a, b, c = a.to_i, b.to_i, c.to_i
if a < b && b < c
puts "YES"
else
puts "NO"
end |
s837705047 | p02392 | u633068244 | 1393913891 | Python | Python | py | Runtime Error | 0 | 0 | 114 | a, b, c = gets.split(" ")
a, b, c = a.to_i, b.to_i, c.to_i
if a < b && b < c
puts "YES"
else
puts "NO"
end |
s084221144 | p02392 | u633068244 | 1393913921 | Python | Python | py | Runtime Error | 0 | 0 | 120 | a, b, c = gets.chomp.split(" ")
a, b, c = a.to_i, b.to_i, c.to_i
if a < b && b < c
puts "YES"
else
puts "NO"
end |
s381389333 | p02392 | u633068244 | 1393913961 | Python | Python | py | Runtime Error | 0 | 0 | 120 | a, b, c = gets.chomp.split(" ")
a, b, c = a.to_i, b.to_i, c.to_i
if a < b && b < c
puts "YES"
else
puts "NO"
end |
s315013471 | p02392 | u971748390 | 1398306799 | Python | Python | py | Runtime Error | 0 | 0 | 82 | a,b,c=map(int,raw_input().split())
if(a<b and b<c) :
print 'Yes'
else
print 'No' |
s918544020 | p02393 | u467175809 | 1531293714 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | hoge = list(map(int, input().split()))
ret = sorted(hoge)
print(str(ret[0]+" "+str(ret[1])+" "+str(ret[2]))
|
s387286777 | p02393 | u467175809 | 1531293732 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | hoge = list(map(int, input().split()))
ret = sorted(hoge)
print(str(ret[0]+" "+str(ret[1])+" "+str(ret[2]))
|
s277545624 | p02393 | u452254177 | 1531318703 | Python | Python3 | py | Runtime Error | 0 | 0 | 165 | a,b,c = [int(i) for i in input().split()]
if a<b<c :
print("Yes")
else :
print("No")
number = [int(i) for i in input().split()]
number.sort()
print(number)
|
s320844155 | p02393 | u452254177 | 1531406427 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | number = [int(i) for i in input().split()]
number.sort()
print(' '.join(number))
|
s084486423 | p02393 | u452254177 | 1531406804 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | number = [for i in input().split()]
number.sort()
print(' '.join(number))
|
s869207003 | p02393 | u281808376 | 1540282487 | Python | Python3 | py | Runtime Error | 0 | 0 | 128 | s=input().split()
a=int(s[0])
b=int(s[1])
c=int(s[2])
num=[a,b,c]
num.sort()
print(str(num[0])+" "+str(num[1]+" "+str(num[2])))
|
s023709538 | p02393 | u281808376 | 1540282543 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | s=input().split()
a=int(s[0])
b=int(s[1])
c=int(s[2])
num=[a,b,c]
num.sort()
print(str(num[0])+" "+str(num[1])+" "+str(num[2])))
|
s123556699 | p02393 | u414655445 | 1540288766 | Python | Python | py | Runtime Error | 0 | 0 | 219 | a = int(input())
b = int(input())
c = int(input())
if a > b:
t = a
a = b
b = t
if b > c:
t = b
b = c
c = t
if a > b:
t = a
a = b
b = t
print a,
print b,
print c,
|
s591940241 | p02393 | u354751877 | 1540343177 | Python | Python | py | Runtime Error | 0 | 0 | 115 | d=raw_input()
d=d.split(" ")
d=list(map(int,d))
d=d.sort()
a=str(d[0])
b=str(d[1])
c=str(d[2])
print a+" "+b+" "+c
|
s087271967 | p02393 | u552594238 | 1545494560 | Python | Python3 | py | Runtime Error | 0 | 0 | 31 | a=input()
b=a.split()
plint(b)
|
s998652547 | p02393 | u552594238 | 1545494581 | Python | Python3 | py | Runtime Error | 0 | 0 | 38 | a=input()
b=a.split()
plint(sorted.b)
|
s225370416 | p02393 | u552594238 | 1545495836 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | a=input()
b=a.split()
c=sorted(b)
print(c[0,1,2])
|
s174072767 | p02393 | u316246166 | 1545656788 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | a, b, c = input().split()
a = int(a)
b = int(b)
c = int(c)
x, y, z = sort(a, b, c)
print(x, y, x, split=" ")
|
s873445158 | p02393 | u316246166 | 1545656810 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | a, b, c = input().split()
a = int(a)
b = int(b)
c = int(c)
x, y, z = sort(a, b, c)
print(x, y, x)
|
s764691778 | p02393 | u316246166 | 1545657008 | Python | Python3 | py | Runtime Error | 0 | 0 | 112 | a, b, c = map(int, input().split())
a = int(a)
b = int(b)
c = int(c)
x, y, z = sort(a, b, c)
print(x, y, x)
|
s455186748 | p02393 | u316246166 | 1545657052 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | a = list.map(int, input().split())
a.sort()
print(a)
|
s718150180 | p02393 | u316246166 | 1545657070 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | a = list.map(int, input().split())
a.sort()
print(a[0], a[1], a[2])
|
s530393887 | p02393 | u638889288 | 1545662791 | Python | Python3 | py | Runtime Error | 0 | 0 | 185 | table=list(map(int,input().split()))
i=2
k=0
if k < i :
while table[k] > table[k+1] :
table[k],table[k+1]=table[k+1],table[k]
k+=1
print(table[0],table[1],table[2])
|
s535290436 | p02393 | u874395007 | 1546078319 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | data = [int(i) for i in input.split()]
out = ' '.join([str(i) for i in sorted(data)])
print(out)
|
s229890532 | p02393 | u498462680 | 1546225790 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | list=map(int,input().split)
sorted = sort(list)
print(' '.join(map(str, sorted)))
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.