mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
14 lines
206 B
Python
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])
|