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
s362082920
p02393
u532962080
1452588267
Python
Python
py
Runtime Error
0
0
163
a,b,c=map(int,raw_input().split()) if a>b: temp=a a=b b=a else: pass elif b>c: temp=b b=c c=b else: pass print str(a) + ' ' + str(b) + ' ' + str(c)
s490052930
p02393
u424209323
1452653489
Python
Python
py
Runtime Error
0
0
433
num = raw_input().split() a = num[0] b = num[1] c = num[2] if a < b: if b < c: print "%d %d %d" % a, b, c if c < b: if a < c: print "%d %d %d" % a, c, b if c < a: print "%d %d %d" % c, a, b if b < a: if a < c: print "%d %d %d" % b, a, c if c < a: if b < c: print "%d %d %d" % b, c, a if c < b: print "%d %d %d" % c, b, a
s053767286
p02393
u424209323
1452653514
Python
Python
py
Runtime Error
0
0
445
num = raw_input().split() a = num[0] b = num[1] c = num[2] if a < b: if b < c: print "%d %d %d" % (a, b, c) if c < b: if a < c: print "%d %d %d" % (a, c, b) if c < a: print "%d %d %d" % (c, a, b) if b < a: if a < c: print "%d %d %d" % (b, a, c) if c < a: if b < c: print "%d %d %d" % (b, c, a) if c < b: print "%d %d %d" % (c, b, a)
s098256337
p02393
u424209323
1452653650
Python
Python
py
Runtime Error
0
0
445
num = raw_input().split() a = num[0] b = num[1] c = num[2] if a < b: if b < c: print "%d %d %d" % (a, b, c) if c < b: if a < c: print "%d %d %d" % (a, c, b) if c < a: print "%d %d %d" % (c, a, b) if b < a: if a < c: print "%d %d %d" % (b, a, c) if c < a: if b < c: print "%d %d %d" % (b, c, a) if c < b: print "%d %d %d" % (c, b, a)
s446106261
p02393
u424209323
1452653664
Python
Python
py
Runtime Error
0
0
445
num = raw_input().split() a = num[0] b = num[1] c = num[2] if a < b: if b < c: print "%d %d %d" % (a, b, c) if c < b: if a < c: print "%d %d %d" % (a, c, b) if c < a: print "%d %d %d" % (c, a, b) if b < a: if a < c: print "%d %d %d" % (b, a, c) if c < a: if b < c: print "%d %d %d" % (b, c, a) if c < b: print "%d %d %d" % (c, b, a)
s912859911
p02393
u613805578
1452699432
Python
Python
py
Runtime Error
0
0
88
a, b, c = map(int, raw_input().split()) num = [a, b, c] num.sort for i in num print i
s268070072
p02393
u613805578
1452699517
Python
Python
py
Runtime Error
0
0
89
a, b, c = map(int, raw_input().split()) num = [a, b, c] num.sort for i in num print i,
s581767121
p02393
u613805578
1452699554
Python
Python
py
Runtime Error
0
0
91
a, b, c = map(int, raw_input().split()) num = [a, b, c] num.sort() for i in num print i,
s384034539
p02393
u613805578
1452699559
Python
Python
py
Runtime Error
0
0
90
a, b, c = map(int, raw_input().split()) num = [a, b, c] num.sort() for i in num print i
s091107077
p02393
u731710433
1452824583
Python
Python3
py
Runtime Error
0
0
61
um = input().split() num.sort() print(num[0], num[1], num[2])
s427054306
p02393
u834416077
1452828523
Python
Python
py
Runtime Error
0
0
62
a = map(int,raw_input().split()) a.sort() print a[0] a[1] a[3]
s852057745
p02393
u834416077
1452828662
Python
Python
py
Runtime Error
0
0
64
a = map(int,raw_input().split()) a.sort() print a[0], a[1], a[3]
s139797206
p02393
u038005340
1453172344
Python
Python
py
Runtime Error
0
0
355
N = map( int , raw_input().split() ) if N[0] < N[1] < N[2]: print 'N[0] N[1] N[2]' elif N[0] < N[2] < N[1]: print 'N[0] < N[2] < N[1]' elif N[1] < N[0] < N[2]: print 'N[1] < N[0] < N[2]' elif N[1] < N[2] < N[0]: print 'N[1] < N[2] < N[0]' elif N[2] < N[0] < N[1]: print 'N[2] < N[0] < N[1]' else N[2] < N[1] < N[0]: print 'N[2] < N[1] < N[0]'
s733272655
p02393
u038005340
1453172510
Python
Python
py
Runtime Error
0
0
231
a,b,c = map( int , raw_input().split() ) if a < b < c: print 'a b c' elif a < c < b: print 'a c b' 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'
s519152279
p02393
u038005340
1453172673
Python
Python
py
Runtime Error
0
0
303
a,b,c = map( int , raw_input().split() ) if a < b < c: print "%s %s %s" %(a,b,c) elif a < c < b: print "%s %s %s" %(a,c,b) elif b < a < c: print "%s %s %s" %(b,a,c) elif b < c < a: print "%s %s %s" %(b,c,a) elif c < a < b: print "%s %s %s" %(c,a,b) else c < b < a: print "%s %s %s" %(c,b,a)
s406570736
p02393
u038005340
1453172681
Python
Python
py
Runtime Error
0
0
303
a,b,c = map( int , raw_input().split() ) if a < b < c: print "%s %s %s" %(a,b,c) elif a < c < b: print "%s %s %s" %(a,c,b) elif b < a < c: print "%s %s %s" %(b,a,c) elif b < c < a: print "%s %s %s" %(b,c,a) elif c < a < b: print "%s %s %s" %(c,a,b) else c < b < a: print "%s %s %s" %(c,b,a)
s001792387
p02393
u038005340
1453172897
Python
Python
py
Runtime Error
0
0
303
a,b,c = map( int , raw_input().split() ) if a < b < c: print "%d %d %d" %(a,b,c) elif a < c < b: print "%d %d %d" %(a,c,b) elif b < a < c: print "%d %d %d" %(b,a,c) elif b < c < a: print "%d %d %d" %(b,c,a) elif c < a < b: print "%d %d %d" %(c,a,b) else c < b < a: print "%d %d %d" %(c,b,a)
s626949444
p02393
u038005340
1453173136
Python
Python
py
Runtime Error
0
0
328
N = map( int , raw_input().split() ) a = N[0] b = N[1] c = N[2] if a < b < c: print "%d %d %d" %(a,b,c) elif a < c < b: print "%d %d %d" %(a,c,b) elif b < a < c: print "%d %d %d" %(b,a,c) elif b < c < a: print "%d %d %d" %(b,c,a) elif c < a < b: print "%d %d %d" %(c,a,b) else c < b < a: print "%d %d %d" %(c,b,a)
s946253111
p02393
u038005340
1453173159
Python
Python
py
Runtime Error
0
0
328
N = map( int , raw_input().split() ) a = N[0] b = N[1] c = N[2] if a < b < c: print "%d %d %d" %(a,b,c) elif a < c < b: print "%d %d %d" %(a,c,b) elif b < a < c: print "%d %d %d" %(b,a,c) elif b < c < a: print "%d %d %d" %(b,c,a) elif c < a < b: print "%d %d %d" %(c,a,b) else c < b < a: print "%d %d %d" %(c,b,a)
s403407329
p02393
u038005340
1453173348
Python
Python
py
Runtime Error
0
0
328
N = map( int , raw_input().split() ) a = N[0] b = N[1] c = N[2] if a < b < c: print "%d %d %d" %(a,b,c) elif a < c < b: print "%d %d %d" %(a,c,b) elif b < a < c: print "%d %d %d" %(b,a,c) elif b < c < a: print "%d %d %d" %(b,c,a) elif c < a < b: print "%d %d %d" %(c,a,b) else c < b < a: print "%d %d %d" %(c,b,a)
s155625067
p02393
u038005340
1453173550
Python
Python
py
Runtime Error
0
0
408
N = map( int , raw_input().split() ) if N[0] < N[1] < N[2]: print "%d %d %d" %(N[0],N[1],N[2]) elif N[0] < N[2] < N[1]: print "%d %d %d" %(N[0],N[1],N[2]) elif N[1] < N[0] < N[2]: print "%d %d %d" %(N[1],N[0],N[2]) elif N[1] < N[2] < N[0]: print "%d %d %d" %(N[1],N[2],N[0]) elif N[2] < N[0] < N[1]: print "%d %d %d" %(N[2],N[0],N[1]) else N[2] < N[1] < N[0]: print "%d %d %d" %(N[2],N[1],N[0])
s024703866
p02393
u038005340
1453173568
Python
Python
py
Runtime Error
0
0
408
N = map( int , raw_input().split() ) if N[0] < N[1] < N[2]: print "%d %d %d" %(N[0],N[1],N[2]) elif N[0] < N[2] < N[1]: print "%d %d %d" %(N[0],N[1],N[2]) elif N[1] < N[0] < N[2]: print "%d %d %d" %(N[1],N[0],N[2]) elif N[1] < N[2] < N[0]: print "%d %d %d" %(N[1],N[2],N[0]) elif N[2] < N[0] < N[1]: print "%d %d %d" %(N[2],N[0],N[1]) else N[2] < N[1] < N[0]: print "%d %d %d" %(N[2],N[1],N[0])
s201118050
p02393
u038005340
1453173690
Python
Python
py
Runtime Error
0
0
408
N = map( int , raw_input().split() ) if N[0] < N[1] < N[2]: print "%d %d %d" %(N[0],N[1],N[2]) elif N[0] < N[2] < N[1]: print "%d %d %d" %(N[0],N[1],N[2]) elif N[1] < N[0] < N[2]: print "%d %d %d" %(N[1],N[0],N[2]) elif N[1] < N[2] < N[0]: print "%d %d %d" %(N[1],N[2],N[0]) elif N[2] < N[0] < N[1]: print "%d %d %d" %(N[2],N[0],N[1]) else N[2] < N[1] < N[0]: print "%d %d %d" %(N[2],N[1],N[0])
s414564574
p02393
u038005340
1453173745
Python
Python
py
Runtime Error
0
0
408
N = map( int , raw_input().split() ) if N[0] < N[1] < N[2]: print "%d %d %d" %(N[0],N[1],N[2]) elif N[0] < N[2] < N[1]: print "%d %d %d" %(N[0],N[1],N[2]) elif N[1] < N[0] < N[2]: print "%d %d %d" %(N[1],N[0],N[2]) elif N[1] < N[2] < N[0]: print "%d %d %d" %(N[1],N[2],N[0]) elif N[2] < N[0] < N[1]: print "%d %d %d" %(N[2],N[0],N[1]) else N[2] < N[1] < N[0]: print "%d %d %d" %(N[2],N[1],N[0])
s867140248
p02393
u619765879
1453187965
Python
Python
py
Runtime Error
0
0
83
a = map(int, raw_input().split()) a.sort() print '%d %d %d' % (a[1], a[2], a[3])
s043195168
p02393
u619765879
1453187977
Python
Python
py
Runtime Error
0
0
85
a = map(int, raw_input().split()) a.sort() print '%d, %d, %d' % (a[1], a[2], a[3])
s264180605
p02393
u619765879
1453188003
Python
Python
py
Runtime Error
0
0
86
a = map(int, raw_input().split()) #a.sort() print '%d, %d, %d' % (a[1], a[2], a[3])
s693042168
p02393
u619765879
1453188084
Python
Python
py
Runtime Error
0
0
84
a = map(int, raw_input().split()) #a.sort() print '%d %d %d' % (a[1], a[2], a[3])
s367040515
p02393
u619765879
1453188619
Python
Python
py
Runtime Error
0
0
106
a = map(int, raw_input().split()) a.sort() for i in range(len(a)): print '%d ' % (a[i]), print '?\n'
s116882796
p02393
u630265299
1453192674
Python
Python
py
Runtime Error
0
0
185
def c(int x, int y) temp = y y = x x = temp for i in range(3): n[i] = input() for j in range(3): if n[i] > n[j]: c(i, j) print "%d %d %d" % (n[1], n[2], n[3])
s516044845
p02393
u630265299
1453192839
Python
Python
py
Runtime Error
0
0
215
n[1] = input() n[2] = input() n[3] = input() def c(int x, int y) temp = y y = x x = temp for i in range(3): for j in range(3): if n[i] > n[j]: c(i, j) print "%d %d %d" % (n[1], n[2], n[3])
s679948032
p02393
u630265299
1453192962
Python
Python
py
Runtime Error
0
0
113
a, b, c=map(int, raw_input().split()) max_min=sorted(a, b, c) for i in range(len(max_min)): print max_min[i],
s129342531
p02393
u532962080
1453205055
Python
Python
py
Runtime Error
0
0
78
a=map(int, raw_input().split()) a=sorted(a) for i in range(2): print L[i]
s371575970
p02393
u532962080
1453205071
Python
Python
py
Runtime Error
0
0
83
a=map(int, raw_input().split()) a=sorted(a) for i in range(2): print L[i] + " "
s584494955
p02393
u532962080
1453205084
Python
Python
py
Runtime Error
0
0
82
a=map(int, raw_input().split()) a=sorted(a) for i in range 2: print L[i] + " "
s244411429
p02393
u532962080
1453205097
Python
Python
py
Runtime Error
0
0
82
a=map(int, raw_input().split()) a=sorted(a) for i in range 2: print a[i] + " "
s447947160
p02393
u532962080
1453205112
Python
Python
py
Runtime Error
0
0
77
a=map(int, raw_input().split()) a=sorted(a) for i in range 2: print a[i]
s557222502
p02393
u532962080
1453205220
Python
Python
py
Runtime Error
0
0
89
a=map(int, raw_input().split()) a=sorted(a) for i in range (len(a)): print a[i] + " "
s616926781
p02393
u532962080
1453205344
Python
Python
py
Runtime Error
0
0
87
a=map(int, raw_input().split()) a=sorted(a) for i in range(len(a)): ????????print a[i],
s361492393
p02393
u532962080
1453205465
Python
Python
py
Runtime Error
0
0
89
a=map(int, raw_input().split()) a=sorted(a) for i in range(len(a)-1): ????????print a[i]
s301384497
p02393
u047737909
1453210449
Python
Python
py
Runtime Error
0
0
229
a, b ,c = map(int, raw_input().split()) if (a < b < c): print a b c elif (a < c < b): print a c b elif (b < a < c): print b a c elif (b < c < a): print b c a elif (c < a < b): print c a b elif (c < b < a): print c b a
s314195982
p02393
u119456964
1453254385
Python
Python
py
Runtime Error
0
0
161
a, b, c = map(raw_input().split()) temp = 0 if b < c: temp = b b = c c = temp if a < b: temp = a a = b b = temp print '{0} {1} {2}'.format(a, b, c)
s489543461
p02393
u682357930
1453255248
Python
Python3
py
Runtime Error
0
0
149
a,b,c = map(int, raw_input().split()) def check(i,j): if i > j: temp = i i = j j = temp check(a,b) check(b,c) check(a,b) print a,b,c
s113042494
p02393
u529340193
1454992838
Python
Python
py
Runtime Error
0
0
73
a = [raw_input().split(" ")] a.sort() print "%s %s %s" % (a[0],a[1],a[2])
s716163511
p02393
u075836834
1457267488
Python
Python3
py
Runtime Error
0
0
58
x=map(int, input().split()) x.sort() print(x[0],x[1],x[2])
s368081401
p02393
u869301406
1458623872
Python
Python
py
Runtime Error
0
0
80
a=list(raw_input().split(" "))) b=map(int,a) b.sort() print " ".join(map(str,b))
s345893116
p02393
u869301406
1458623899
Python
Python
py
Runtime Error
0
0
80
a=list(raw_input().split(" "))) b=map(int,a) b.sort() print " ".join(map(str,b))
s751744455
p02393
u402330988
1459730306
Python
Python3
py
Runtime Error
0
0
150
# encoding:utf-8 input = list(map(int, input().split(" "))) input.sort() print (str(input_str[0]) + " " + str(input_str[1]) + " " + str(input_str[2]))
s668332889
p02393
u894381890
1460351485
Python
Python
py
Runtime Error
0
0
504
import sys x = sys.stdin.readline() x_list = x.split(" ") max = int(x_list[0]) maxNo = 0 min = int(x_list[0]) minNo = 0 for i in range(1,3): if max < int(x_list[i]): max = int(x_list[i]) maxNo = i elif min > int(x_list[i]): min = int(x_list[i]) minNo = i if (max == 0 and min == 1) or (max == 1 and min == 0): mid == int(x_list[2]) elif (max == 0 and min == 2) or (max == 2 and min == 0): mid == int(x_list[1]) else: mid == int(x_list[0]) print "%s %s %s" %(max, mid, min)
s085609480
p02393
u894381890
1460351531
Python
Python
py
Runtime Error
0
0
519
import sys x = sys.stdin.readline() x_list = x.split(" ") max = int(x_list[0]) maxNo = 0 min = int(x_list[0]) minNo = 0 for i in range(1,3): if max < int(x_list[i]): max = int(x_list[i]) maxNo = i elif min > int(x_list[i]): min = int(x_list[i]) minNo = i if (maxNo == 0 and minNo == 1) or (maxNo == 1 and minNo == 0): mid == int(x_list[2]) elif (maxNo == 0 and minNo == 2) or (maxNo == 2 and minNo == 0): mid == int(x_list[1]) else: mid == int(x_list[0]) print "%s %s %s" %(max, mid, min)
s127232508
p02393
u894381890
1460351993
Python
Python
py
Runtime Error
0
0
274
import sys x = sys.stdin.readline() a1,b1,c1 = x.split(" ") a = int(a1) b = int(b1) c = int(c1) max = a mid = a min = a if max < b: max = b elif min > b: min = b if max < c: mid = max max = c elif min > c: mid = min min = c print("%d %d %d"), %(max,mid,min)
s591704233
p02393
u077284614
1461236105
Python
Python3
py
Runtime Error
0
0
40
a[i]=map(int,input().split()) a.sort() a
s126180791
p02393
u077284614
1461236361
Python
Python3
py
Runtime Error
0
0
60
num = list(map(int,input().split())) num.sort() print(num[])
s250903176
p02393
u617990214
1461758808
Python
Python
py
Runtime Error
0
0
168
# GNU nano 2.2.6 ????????????: 2_c.py n=raw_input() k=n.split(n) k.sort() #k=[3,2,1] print k[0], print k[1], print k[2]
s699169713
p02393
u617990214
1461758822
Python
Python
py
Runtime Error
0
0
82
n=raw_input() k=n.split(n) k.sort() #k=[3,2,1] print k[0], print k[1], print k[2]
s813525331
p02393
u617990214
1461758864
Python
Python
py
Runtime Error
0
0
70
n=raw_input() k=n.split(n) k.sort() print k[0], print k[1], print k[2]
s152878173
p02393
u105949207
1462525845
Python
Python
py
Runtime Error
0
0
110
l = [int(x) for x in input().rstrip().split(" ")] result = [str(x) for x in sorted(l)] print(" ".join(result))
s142435390
p02393
u105949207
1462525893
Python
Python3
py
Runtime Error
0
0
332
a, b, c = [int(x) for x in raw_input().split(" ")] list =[a,b,c] list_2 = [] for x in range(len(list)): mini = min(list) list_2.append(mini) list.remove(mini) for x in range(0, len(list_2)): a = list_2[x] if x == 0: req = str(a) + " " else: req += str(a) + " " q = req.rstrip() print(req)
s235880165
p02393
u999470575
1463118852
Python
Python3
py
Runtime Error
0
0
363
a ,b ,c = input().split(' ') if int(a) > int(b) > int(c): print(int(c),int(b),int(a)) elif int(b) > int(c) > int(a): print(int(a),int(c),int(b)) elif int(c) > int(a) >???int(b): print(int(b),int(a),int(c)) elif int(c) > int(b) > int(a): print(int(a),int(b),int(c)) elif int(b) > int(a) > int(c): print(int(c),int(a),int(b)) else: print(int(b),int(c),int(a))
s496145504
p02393
u999470575
1463120628
Python
Python3
py
Runtime Error
0
0
363
a ,b ,c = input().split(' ') if int(a) > int(b) > int(c): print(int(c),int(b),int(a)) elif int(b) > int(c) > int(a): print(int(a),int(c),int(b)) elif int(c) > int(a) >???int(b): print(int(b),int(a),int(c)) elif int(c) > int(b) > int(a): print(int(a),int(b),int(c)) elif int(b) > int(a) > int(c): print(int(c),int(a),int(b)) else: print(int(b),int(c),int(a))
s568355486
p02393
u104931506
1464194103
Python
Python3
py
Runtime Error
0
0
50
A = list(map(int, input().split())) print(sort(A))
s978855050
p02393
u177370127
1465188674
Python
Python3
py
Runtime Error
0
0
44
a = map(int, input().split()) a.sort() a[0:]
s171382670
p02393
u177370127
1465188869
Python
Python3
py
Runtime Error
0
0
51
a = map(int, input().split()) a.sort() print(a[0:])
s582584599
p02393
u177370127
1465189148
Python
Python3
py
Runtime Error
0
0
82
a = list(map(int, input().split())) a.sort() print(a[0] + " " + a[1] + " " + a[2])
s949046186
p02393
u811773570
1465266771
Python
Python3
py
Runtime Error
0
0
69
a=map(int,input().split()) a.sort() for i in range(3): print(a[i]),
s874763873
p02393
u587193722
1469516166
Python
Python3
py
Runtime Error
0
0
68
x = sorted([int(i) for i in input().split()]) print("{0} {1} {2}".x)
s798857395
p02393
u587193722
1469516191
Python
Python3
py
Runtime Error
0
0
76
x = sorted([int(i) for i in input().split()]) print("{0} {1} {2}".format(x))
s245260387
p02393
u671553883
1469516384
Python
Python3
py
Runtime Error
0
0
103
data = [int(i) for i in input)_.split()] data.sort() print("{0}{1}{2}".format(data[0],data[1],data[2])
s413993300
p02393
u671553883
1469516414
Python
Python3
py
Runtime Error
0
0
104
data = [int(i) for i in input)_.split()] data.sort() print("{0}{1}{2}".format(data[0],data[1],data[2]))
s867799127
p02393
u671553883
1469516424
Python
Python3
py
Runtime Error
0
0
103
data = [int(i) for i in input).split()] data.sort() print("{0}{1}{2}".format(data[0],data[1],data[2]))
s767673017
p02393
u382316013
1469516426
Python
Python3
py
Runtime Error
0
0
98
data = [int(i) for i in input().split()] data.sort() print("{0} {1} {2}".format(data[0],data[2]))
s386524348
p02393
u747009765
1469516452
Python
Python3
py
Runtime Error
0
0
105
data = [int(i) for i in input().split()] data.sort() print("{0} {1} {2}".format(data[0],data[1],data[2])
s075071795
p02393
u382316013
1469516465
Python
Python3
py
Runtime Error
0
0
98
data = [int(i) for i in input().split()] data.sort() print("{0} {1} {2}".format(data[0],data[2]))
s674908850
p02393
u644636020
1469516472
Python
Python3
py
Runtime Error
0
0
109
1data = [int(i) for i in input().split()] data.sort() print("{0} {1} {2}".format(data[0], data[1], data[2]))
s317638035
p02393
u671553883
1469516481
Python
Python3
py
Runtime Error
0
0
105
data = [int(i) for i in input().split()] data.sort() print("{0}{1}{2}".format(data[0],data[1],data[2]))
s463404242
p02393
u204883389
1469516490
Python
Python3
py
Runtime Error
0
0
104
data = [int(i) for i in input().split()] data.sort() print("{0}{1}{2}",format(data[0],data[1],data[2]))
s369927849
p02393
u204883389
1469516543
Python
Python3
py
Runtime Error
0
0
103
data =[int(i) for i in input().split()] data.sort() print("{0}{1}{2}",format(data[0],data[1],data[2]))
s313457869
p02393
u204883389
1469516580
Python
Python3
py
Runtime Error
0
0
106
data = [int(i) for i in (input().split())] data.sort() print("{0}{1}{2}",format(data[0],data[1],data[2]))
s564236846
p02393
u671553883
1469516639
Python
Python3
py
Runtime Error
0
0
104
data = [int(i) for i in input().split()] data.sort() print("{0}{1}{2}".format(data{0},data{1},data{2}))
s863975853
p02393
u671553883
1469516781
Python
Python3
py
Runtime Error
0
0
106
data = [int(i) for i in input().split()] data.sort() print("{0}{1}{2}".format'(data[0],data[1],data[2])')
s049587571
p02393
u671553883
1469516815
Python
Python3
py
Runtime Error
0
0
108
data = [int(i) for i in input().split()] data.sort() print("{0}{1}{2}".format(data[0],data[1],data[2]))
s975672964
p02393
u204883389
1469516842
Python
Python3
py
Runtime Error
0
0
104
data = [int(i) for i in input().split()] data,sort() print("{0}{1}{2}".format(data[0],data[1],data[2]))
s181875251
p02393
u671553883
1469516952
Python
Python3
py
Runtime Error
0
0
116
import data data = [int(i) for i in input().split()] data.sort() print("{0}{1}{2}".format(data[0],data[1],data[2]))
s435073935
p02393
u671553883
1469517223
Python
Python3
py
Runtime Error
0
0
104
data = [int(i) for i in input().split()] data.sort() print("{0}{1}{2}".format[data[0],data[1],data[2]])
s277718644
p02393
u628732336
1469596432
Python
Python3
py
Runtime Error
0
0
110
date = [int(1) for i in input().split()] date.sort() print("{0} {1} {2}".format(date[0],date[1],date[2]))
s003608836
p02393
u628732336
1469596495
Python
Python3
py
Runtime Error
0
0
108
data = [int(i) for i in input().split()] ?? data.sort() print("{0} {1} {2}".format(data[0],data[1],data[2]))
s252686078
p02393
u628732336
1469596862
Python
Python3
py
Runtime Error
0
0
108
data = [int(i) for i in input().split()] ?? data.sort() print("{0} {1} {2}".format(data[0],data[1],data[2]))
s291723194
p02393
u510829608
1469779793
Python
Python3
py
Runtime Error
0
0
39
input() print(*sorted(input().split()))
s246466265
p02393
u216425054
1470670931
Python
Python3
py
Runtime Error
0
0
42
sorted([int(x) for x in input().split(()])
s120707339
p02393
u216425054
1470671431
Python
Python3
py
Runtime Error
0
0
86
sorted([int(x) for x in input().split()]) print(sorted[0]+" "+sorted[1]+" "+sorted[2])
s910797982
p02393
u216425054
1470671525
Python
Python3
py
Runtime Error
0
0
85
list=sorted([int(x) for x in input().split()]) print(list[0]+" "+list[1]+" "+list[2])
s983212483
p02393
u998435601
1470853957
Python
Python
py
Runtime Error
0
0
71
i = map(int, raw_input().split()).sort() for x in i: print x, print ""
s281857447
p02393
u808470263
1472568447
Python
Python3
py
Runtime Error
0
0
13
sorted(3,8,1)
s365903649
p02393
u808470263
1472568530
Python
Python3
py
Runtime Error
0
0
22
sorted(10000,1000,100)
s168309099
p02393
u362094064
1473945293
Python
Python3
py
Runtime Error
0
0
107
a, b, c = input()split() if a > b: a, b = b, a if b > c: b, c = c, b if a > b: a, b = b, a print(a,b,c)
s248520021
p02393
u362094064
1473990874
Python
Python3
py
Runtime Error
0
0
112
(a, b, c) = input()split() if a > b: a, b = b, a if b > c: b, c = c, b if a > b: a, b = b, a print(a, b, c)
s399143983
p02393
u419760455
1475224110
Python
Python3
py
Runtime Error
0
0
70
a, b, c = list(map(int, input().split())) sort(a, b ,c) print(a, b, c)
s875897149
p02393
u419760455
1475900155
Python
Python3
py
Runtime Error
0
0
77
a = list(map(int, input().split())) sort(a[0], a[2]) print(a[0], a[1], a[2])
s973961826
p02393
u419760455
1475900225
Python
Python3
py
Runtime Error
0
0
71
a = list(map(int, input().split())) num.sort() print(a[0], a[1], a[2])
s651800708
p02393
u831244171
1477487131
Python
Python
py
Runtime Error
0
0
88
x = raw_input().split() m = map(int,x) sort(m) a = m[0] b = m[1] c = m[2] print a,b,c