when analyzing data sets, such as data for human heights or for human weights, a common step is to adjust the data. this adjustment can be done by normalizing to values between 0 and 1, or throwing away outliers. for this program, adjust the values by dividing all values by the largest value. the input begins with an integer indicating the number of floating-point values that follow. output each floating-point value with two digits after the decimal point, which can be achieved as follows: print(f'{your value:.2f}')