result = [] cnt = int(input("Insert count:")) for i in range(cnt): result.append(input(f"{i + 1}: ")) print("Result:") print(" ".join(result))
ZerG