mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
10 lines
174 B
Python
10 lines
174 B
Python
def problem_p02399(input_data):
|
|
(a, b) = [int(x) for x in input_data.split()]
|
|
|
|
x = a // b
|
|
|
|
y = a % b
|
|
|
|
z = a / b
|
|
|
|
return "{0} {1} {2:.6f}".format(x, y, z)
|