def inf(imie: str, wiek: int, wzrost_m: float) -> str:
    return f"{imie}, lat {wiek}, {wzrost_m:.2f} m wzrostu"

print(inf("jan", 20, 1.75))