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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s578057320 | p02393 | u675844759 | 1496799743 | Python | Python3 | py | Runtime Error | 0 | 0 | 65 | a = [int(i) for i in input().split()]
" ".join(map(str,a.sort())) |
s639944184 | p02393 | u675844759 | 1496800110 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | a = [int(i) for i in input().split()]
print(" ".join(sorted(a))) |
s021802334 | p02393 | u580737984 | 1497507868 | Python | Python3 | py | Runtime Error | 0 | 0 | 351 | i = j = k = 0
n = ''
m = ''
l = ''
line = input()
while line[i] != ' ':
n = n + line[i]
i += 1
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)
out = [n,m,l]
out = out.sort()
print(out[0],end=' ')
print(out[1],end=' ')
print(out[2]) |
s772397825 | p02393 | u050103511 | 1497511206 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | list = [i for i in input().split()]
print(' '.join([int(i) for i in sorted(list)])) |
s715186542 | p02393 | u050103511 | 1497511287 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | list = [int(i) for i in input().split()]
L = sort.list()
print(' '.join([str(i) for i in L])) |
s798173977 | p02393 | u050103511 | 1497511352 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | list = [int(i) for i in input().split()]
L = list.sort()
print(' '.join([str(i) for i in L])) |
s618076115 | p02393 | u050103511 | 1497511393 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | List = [int(i) for i in input().split()]
Sort = list.sort()
print(' '.join([str(i) for i in Sort])) |
s076825078 | p02393 | u050103511 | 1497511665 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | List = [int(i) for i in input().split()]
print(' '.join([i for i in sorted(List)])) |
s181802747 | p02393 | u027278270 | 1497512075 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | n = list(map(int,input().split()))
n.sort()
print(n[0],n[1],n[2],sep=()) |
s132914406 | p02393 | u569585396 | 1497513280 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | x = input().split()
i = list(map(int,x))
a = i[0]
b = i[1]
c = i[2]
re = '{} {} {}'.format(a,b,c)
re.reverse()
print(re) |
s381871513 | p02393 | u569585396 | 1497513429 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | a,b,c = map(int.input().split())
if a <= b <= c:
print(a,b,c) |
s729257900 | p02393 | u569585396 | 1497513598 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | x = map(int.input().split())
x.sort()
print(x) |
s364839487 | p02393 | u569585396 | 1497513648 | Python | Python3 | py | Runtime Error | 0 | 0 | 35 | x = int(input())
x.sort()
print(x) |
s160543358 | p02393 | u433181015 | 1497513861 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | nums = [int(i) for i in input().split()]
sort_nums = sort.nums
" ".join(sort_nums) |
s934501941 | p02393 | u433181015 | 1497513926 | Python | Python3 | py | Runtime Error | 0 | 0 | 89 | nums = [int(i) for i in input().split()]
sort_nums = sort.nums
print(" ".join(sort_nums)) |
s843142960 | p02393 | u333596716 | 1497680894 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | a,b,c=map(int,input().split())
a,b,c.sort()
print(a,b,c) |
s536471757 | p02393 | u333596716 | 1497680984 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | a,b,c=map(int,input().split())
numlist=a,b,c
print(numlist.sort()) |
s388119573 | p02393 | u333596716 | 1497762771 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | a,b,c=map(int,input().split())
print(a,b,c.sort()) |
s830805283 | p02393 | u333596716 | 1497763092 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | a,b,c=map(int,input().split())
numlist=[a,b,c]
numlist.sort()
print numlist |
s456485402 | p02393 | u200401481 | 1497807733 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | a = list(map(int,input().split()))
sort(a)
print(str(a[0])+" "+str(a[1])+" "+str(a[2])) |
s976991540 | p02393 | u698693989 | 1497834988 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | y=list(map(int,x))
a=y[0]
b=y[1]
c=y[2]
d=sorted([a,b,c])
print("{0} {1} {2}".format(d[0],d[1],d[2])) |
s157478426 | p02393 | u569585396 | 1498029727 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | x = input().split()
i = list(map(int(x)))
a = i[0]
b = i[1]
c = i[2]
print('{} {} {}'.format(c,b,a)) |
s778506879 | p02393 | u261533743 | 1498029750 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | num = map(int,input().split())
num.sort()
print(num) |
s618950265 | p02393 | u410114382 | 1498029813 | Python | Python3 | py | Runtime Error | 0 | 0 | 35 | numberList.sort()
print(numberList) |
s742279039 | p02393 | u433181015 | 1498030131 | 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" |
s557899598 | p02393 | u410114382 | 1498030134 | Python | Python3 | py | Runtime Error | 0 | 0 | 36 | list = [3 8 1]
list.sort
print(list) |
s022936814 | p02393 | u569585396 | 1498030403 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | x = input()
i = list(map(int,x))
??
i.sort
print(i) |
s390863469 | p02393 | u623827446 | 1498030454 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | x=input().split()
y=list(map(int,x))
(i) in sorted(y)
print(i) |
s775483188 | p02393 | u333596716 | 1498030782 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | a,b,c=map(int,input().split())
print(sort(a,b,c)) |
s655472672 | p02393 | u333596716 | 1498031025 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | a,b,c=map(int,input().split())
d=sorted([a,b,c])
print "{0} {1} {2}".format(d[0],d[1],d[2]) |
s103954676 | p02393 | u911624488 | 1498031224 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | nums = [int(i) for i in input().split()]
nums_sort = sorted(nums)
print "{}" "{}" "{}".format(nums_sort) |
s525883786 | p02393 | u911624488 | 1498031365 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | nums = [int(i) for i in input().split()]
nums_sort = sorted(nums)
nums_str = map(str, nums)
print "{}" "{}" "{}".format(nums_str) |
s341237518 | p02393 | u692161606 | 1498031978 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | a,b,c = map(int, input().split().sort())
n=sorted([a,b,c])
print "{0} {1} {2}".format.(n[0],n[1],n[2]) |
s062387963 | p02393 | u464377021 | 1498116647 | Python | Python3 | py | Runtime Error | 0 | 0 | 127 | [a, b, c] = map(int, input().split())
min = min(a,b,c)
max = max(a,b,c)
nokori = sam(a,b,c) - min - max
print(min,nokori,max) |
s097240568 | p02393 | u890164142 | 1498194071 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | print(" ".join([str(i) for i in sorted([int(w) for w in input().split()])]) |
s832566052 | p02393 | u692161606 | 1498281440 | Python | Python3 | py | Runtime Error | 0 | 0 | 95 | a, b, c = map(int, input().split())
a, b, c.sort()
print "{0} {1} {2}".format(a[0], b[1], c[2]) |
s810266518 | p02393 | u818923713 | 1498402716 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | list = sorted(map(int,raw_input().split()))
strlist = map(str,list)
print strlist[0] + ' ' + strlist[1] + ' ' + strlist[2] |
s015861476 | p02393 | u818923713 | 1498402875 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | a,b,c = sorted(map(input().split()))
print(a,b,c) |
s175404883 | p02393 | u818923713 | 1498402937 | Python | Python3 | py | Runtime Error | 0 | 0 | 45 | a,b,c = sorted(input().split())
print(a,b,c) |
s230542992 | p02393 | u818923713 | 1498402999 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | a, b, c = sorted(input().split())
print(a, b, c) |
s144392953 | p02393 | u043639882 | 1499840718 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | a,b,c=map(int,input().split())
if a < b <c:
print("a < b < c")
elif |
s563800583 | p02393 | u043639882 | 1499901684 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | numbers=list(map(int,input().split()))
numbers.sort()
print(numbers[0] numbers[1] numbers[2]) |
s243708831 | p02393 | u663910047 | 1500119398 | Python | Python3 | py | Runtime Error | 0 | 0 | 175 | a,b,c=map(int,input().split())
if a >b:
x = a
a = b
b= x
else:
if b >c:
y = c
c=b
b=y
else:
if a > b:
x = a
a = b
b = x
else:
print (a,b,c) |
s945983952 | p02393 | u853619096 | 1500303384 | Python | Python3 | py | Runtime Error | 0 | 0 | 132 | z = [input(i) for i in input().split()]
z =[int(i) for i in input().split()]
z.sort()
print("{0} {1} {2}".format(z[0],z[1],z[2])) |
s924693742 | p02393 | u721103753 | 1500529162 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | a = list(int(i) for i in input().split())
a.sort()
b = " ".join(a) |
s141569153 | p02393 | u888737393 | 1500682211 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | inputlines = list(map(int, input().split()))
li = inputlines.sort()
print(' '.join(map(str, li))) |
s195848773 | p02393 | u853619096 | 1502509967 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | a=list(map(int.input().split()))
a=sort(a)
print(" ".join(a)) |
s233051441 | p02393 | u853619096 | 1502510051 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | a=list(map(int,input().split()))
a=a.sort()
print(" ".join(a)) |
s265713244 | p02393 | u853619096 | 1502510715 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | a=list(map(int,input().split()))
a.sort()
print(" ".join(a)) |
s394080964 | p02393 | u853619096 | 1502510913 | Python | Python3 | py | Runtime Error | 0 | 0 | 164 | a=list(map(int,input().split()))
a.sort()
print(" ".join(a))
a=list(map(int,input().split()))
a.sort()
alist=[]
for i in a:
alist+=str(i)
print(" ".join(alist)) |
s118362808 | p02393 | u117053676 | 1502801047 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | a = map(int,input().split())
a.sort()
print(a[0],a[1],a[2]) |
s137678086 | p02393 | u744121389 | 1502852484 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | x= map(input().split())
print(x.sort, sep=" ") |
s939834259 | p02393 | u744121389 | 1502852676 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | x= [a,b,c]
a,b,c = (input().split())
x.sort()
print(x,sep=" ") |
s277423644 | p02393 | u744121389 | 1502853719 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | for i in x,input():
if x == 0:
break
print("Case " +i+ ": " + x) |
s844901371 | p02393 | u744121389 | 1502853841 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | x = input()
for i in x:
if x == 0:
break
print("Case " +i+ ": " + x) |
s471094283 | p02393 | u744121389 | 1502853930 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | x = input()
for i in x:
if x == 0:
break
print("Case " +i+ ": " + x) |
s598516319 | p02393 | u283452598 | 1503039538 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | x = map(int,input().split())
print(" ".join(x.sort())) |
s942420413 | p02393 | u283452598 | 1503039554 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | x = map(int,input().split())
print(" ".join(x.sort())) |
s479883240 | p02393 | u283452598 | 1503040968 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | x = list(map(int,input().split()))
x = sorted(x)
print("{0} {1} {2}".format(x[0],x[1],x[2]) |
s596335384 | p02393 | u283452598 | 1503040986 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | x = list(map(int,input().split()))
x = x.sort()
print("{0} {1} {2}".format(x[0],x[1],x[2]) |
s905867681 | p02393 | u283452598 | 1503041024 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | x = list(map(int,input().split()))
x = x.sort()
print("{0} {1} {2}".format(x[0],x[1],x[2])) |
s814712931 | p02393 | u316697096 | 1503134767 | Python | Python | py | Runtime Error | 0 | 0 | 73 | a,b,c=map(int,raw_input().split())
d=[]
d.append(a,b,c)
d.sort()
print d |
s903154638 | p02393 | u544943822 | 1503550973 | Python | Python | py | Runtime Error | 0 | 0 | 247 | a,b,c=map(int, raw_input().split())
if a<b<c:
print('a < b <c')
elif a<c<b:
print('a < b < c<')
elif b<a<c:
print('b < a < c')
elif b<c<a:
print('b < c < a')
elif c<a<b:
print('c < a < b')
else c<b<a:
print('c < b < a') |
s915201301 | p02393 | u544943822 | 1503551188 | Python | Python | py | Runtime Error | 0 | 0 | 249 | a,b,c=map(int, raw_input().split())
if a<b<c:
print('a < b <???c')
elif a<c<b:
print('a < b < c')
elif b<a<c:
print('b < a < c')
elif b<c<a:
print('b < c < a')
elif c<a<b:
print('c < a < b')
else c<b<a:
print('c < b < a') |
s113164219 | p02393 | u544943822 | 1503551303 | Python | Python | py | Runtime Error | 0 | 0 | 249 | a,b,c=map(int, raw_input().split())
if a<b<c:
print('a < b <???c')
elif a<c<b:
print('a < b < c')
elif b<a<c:
print('b < a < c')
elif b<c<a:
print('b < c < a')
elif c<a<b:
print('c < a < b')
else c<b<a:
print('c < b < a') |
s571206837 | p02393 | u544943822 | 1503551533 | Python | Python | py | Runtime Error | 0 | 0 | 252 | a,b,c=map(int, raw_input().split())
if a<b<c:
print('a < b < c')
elif a<c<b:
print('a < b < c')
elif b<a<c:
print('b < a < c')
elif b<c<a:
print('b < c < a')
elif c<a<b:
print('c < a < b')
else c<b<a:
print('c < b < a') |
s258686159 | p02393 | u655518263 | 1505065679 | Python | Python | py | Runtime Error | 0 | 0 | 142 | lin = input()
l = lin.split(" ")
a = int(l[0])
b = int(l[1])
c = int(l[2])
l = [a,b,c]
l.sort()
print(str(l[0])+" "+str(l[1])+" "+str(l[2])) |
s047440997 | p02393 | u362494298 | 1505103401 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | input().sort()
a,b,c = map(int, input().split())
print(a b c) |
s101558927 | p02393 | u362494298 | 1505103534 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | a = map(int, input().split())
a.sort()
print(a[0], a[1], a[2]) |
s211749630 | p02393 | u664228906 | 1506313652 | Python | Python3 | py | Runtime Error | 0 | 0 | 154 | a,b,c=map(int, input().split())
if a>b:
i=a
a = b
b = i
if b>c:
i=b
b=c
c=b
if a>c
i=a
a=c
c=a
str="{a} {b} {c}"
print(str.format(a=a, b=b, c=c) |
s070589986 | p02393 | u664228906 | 1506313675 | Python | Python3 | py | Runtime Error | 0 | 0 | 154 | a,b,c=map(int, input().split())
if a>b:
i=a
a = b
b = i
if b>c:
i=b
b=c
c=b
if a>c
i=a
a=c
c=i
str="{d} {e} {f}"
print(str.format(d=a, e=b, f=c) |
s580575227 | p02393 | u664228906 | 1506313705 | Python | Python3 | py | Runtime Error | 0 | 0 | 155 | a,b,c=map(int, input().split())
if a>b:
i=a
a = b
b = i
if b>c:
i=b
b=c
c=b
if a>c:
i=a
a=c
c=i
str="{d} {e} {f}"
print(str.format(d=a, e=b, f=c) |
s425699293 | p02393 | u936401118 | 1506489106 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | count = int(input())
a = [int(input()) for i in range(count)]
a.sort()
for i in range(count):
print (a[i]) |
s413677470 | p02393 | u936401118 | 1506489191 | Python | Python3 | py | Runtime Error | 0 | 0 | 65 | a = map(int, input().split())
a.sort()
for i in 3:
print (a[i]) |
s395743378 | p02393 | u936401118 | 1506489278 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | a = map(int, input().split())
a.sort()
for i in 3:
print (list(a[i]), ' ') |
s648751852 | p02393 | u505411588 | 1507288835 | Python | Python3 | py | Runtime Error | 40 | 7708 | 272 | a, b, c = map(int, input().split())
if a < b:
if a < c:
x = a
if b < c:
y = b
z = c
else:
y = c
z = b
else:
x = c
y = a
z = b
elif a < c:
x = b
y = a
z = c
elif b < c:
x = b
y = c
x = a
else:
x = c
y = b
z = a
print(x, y, z) |
s516377346 | p02393 | u505411588 | 1507289392 | Python | Python3 | py | Runtime Error | 20 | 7720 | 269 | a, b, c = map(int, input().split())
if a < b:
if a < c:
x = a
if b < c:
y = b
z = c
else:
y = c
z = b
else:
x = c
y = a
z = b
elif a < c:
x = b
y = a
z = c
elif b < c:
x = b
y = c
x = a
else:
x = c
y = b
z = a
print(x, y, z) |
s545672197 | p02393 | u505411588 | 1507289565 | Python | Python3 | py | Runtime Error | 20 | 7724 | 269 | a, b, c = map(int, input().split())
if a < b:
if a < c:
x = a
if b < c:
y = b
z = c
else:
y = c
z = b
else:
x = c
y = a
z = b
elif a < c:
x = b
y = a
z = c
elif b < c:
x = b
y = c
x = a
else:
x = c
y = b
z = a
print(x, y, z) |
s414921724 | p02393 | u183224403 | 1507423975 | Python | Python | py | Runtime Error | 0 | 0 | 167 | a = sorted(list(map(int, input().split())))
for i in range(len(a)):
if i == 0:
print(a[i], end="")
else:
print(' '+ '{}'.format(a[i]), end="") |
s275085318 | p02393 | u102664642 | 1507824055 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | l = map(int,raw_input().split())
L = sorted(l,key=int)
print L[0],L[1],L[2] |
s555068914 | p02393 | u102664642 | 1507824192 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | l = map(int,raw_input().split())
L = sorted(l,key=int)
print str(L[0]),str(L[1]),str(L[2]) |
s017893584 | p02393 | u102664642 | 1507899409 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | l = map(int,raw_input().split())
L = sorted(l,key=int)
print "L[0]","L[1]","L[2]" |
s901302747 | p02393 | u102664642 | 1507899590 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | l = sorted(map(int,raw_input().split())))
print str(l[0]),str(l[1]),str(l[2]) |
s023815510 | p02393 | u102664642 | 1507899719 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | l = sorted(map(int,raw_input().split())))
print (str(l[0]),str(l[1]),str(l[2])) |
s871745298 | p02393 | u102664642 | 1507900077 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | l=sorted(map(int,raw_input()))
print(l[0],l[1],l[2]) |
s927057291 | p02393 | u102664642 | 1507900114 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | l=sorted(map(int,raw_input().split()))
print(l[0],l[1],l[2]) |
s439361220 | p02393 | u102664642 | 1507900935 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | l=list(sorted(map(int,raw_input().split())))
print(l[0],l[[1],l[2]) |
s188262711 | p02393 | u102664642 | 1507901002 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | l=sorted(list(map(int,raw_input().split())))
print(l[0],l[[1],l[2]) |
s655117435 | p02393 | u102664642 | 1507901032 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | l=sorted(list(map(int,raw_input().split())))
print(l[0],l[[1],l[2]) |
s666172360 | p02393 | u102664642 | 1507901067 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | l=sorted(list(map(int,raw_input().split())))
print(l[0],l[1],l[2]) |
s433170398 | p02393 | u102664642 | 1507901999 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | l=list(map(int,raw_input().split()))
L=sorted(l)
print(L[0],L[1],L[2]) |
s163181498 | p02393 | u824030785 | 1508251847 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | a = list(int, input().split())
a.sort()
print(a[0], a[1], a[2]) |
s394862399 | p02393 | u043968625 | 1509260749 | Python | Python3 | py | Runtime Error | 0 | 0 | 256 | num=[int(i) for i in input().split()]
for i in range(len(num)):
for j in range(i+1,len(num)+1):
if num[i]>num[j]:
bigger = num[i]
num[i]=num[j]
num[j]=bigger
for i in range(len(num)):
print(num[i],end="") |
s375305762 | p02393 | u518939641 | 1509379718 | Python | Python3 | py | Runtime Error | 0 | 0 | 44 | print(sorted(list(map(int,input().split()))) |
s103431437 | p02393 | u725391514 | 1510379268 | Python | Python3 | py | Runtime Error | 50 | 7600 | 467 | a, b, c= map(int,input().split())
if a<b:
if b<c:
x=a
y=b
z=c
elif b>c:
if c<a:
x=c
y=a
z=b
else:
x=a
y=c
z=b
if a>b:
if b>c:
x=c
y=b
z=a
elif b<c:
if c<a:
x=b
y=c
z=a
else:
x=b
y=a
z=c
print(str(x)+" "+str(y)+" "+str(z)) |
s028080523 | p02393 | u725391514 | 1510379319 | Python | Python3 | py | Runtime Error | 20 | 7744 | 467 | a, b, c= map(int,input().split())
if a<b:
if b<c:
x=a
y=b
z=c
elif b>c:
if c<a:
x=c
y=a
z=b
else:
x=a
y=c
z=b
if a>b:
if b>c:
x=c
y=b
z=a
elif b<c:
if c<a:
x=b
y=c
z=a
else:
x=b
y=a
z=c
print(str(x)+" "+str(y)+" "+str(z)) |
s508686294 | p02393 | u725391514 | 1510379372 | Python | Python3 | py | Runtime Error | 0 | 0 | 474 | a, b, c= map(int,input().split())
if a=<b:
if b=<c:
x=a
y=b
z=c
elif b=>c:
if c=<a:
x=c
y=a
z=b
else:
x=a
y=c
z=b
if a=>b:
if b>c:
x=c
y=b
z=a
elif b=<c:
if c=<a:
x=b
y=c
z=a
else:
x=b
y=a
z=c
print(str(x)+" "+str(y)+" "+str(z)) |
s655435019 | p02393 | u725391514 | 1510379434 | Python | Python3 | py | Runtime Error | 0 | 0 | 469 | a, b, c= map(int,input().split())
if a=<b:
if b<c:
x=a
y=b
z=c
elif b>c:
if c<a:
x=c
y=a
z=b
else:
x=a
y=c
z=b
if a=>b:
if b>c:
x=c
y=b
z=a
elif b<c:
if c<a:
x=b
y=c
z=a
else:
x=b
y=a
z=c
print(str(x)+" "+str(y)+" "+str(z)) |
s218442675 | p02393 | u899891332 | 1510468089 | Python | Python3 | py | Runtime Error | 0 | 0 | 41 | print(sorted(intput().split())).join(' ') |
s629550115 | p02393 | u899891332 | 1510468109 | Python | Python3 | py | Runtime Error | 0 | 0 | 40 | print(sorted(input().split())).join(' ') |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.