codeflash-internal/experiments/pie_test_set/p02393.py

14 lines
206 B
Python

def problem_p02393(input_data):
x = input_data.split()
y = list(map(int, x))
a = y[0]
b = y[1]
c = y[2]
d = sorted([a, b, c])
return "{0} {1} {2}".format(d[0], d[1], d[2])