N_Of_Planks = int(input("Number of planks in the ship")) state = input("Current state of the ship") o_blueprint = input("Original blueprint of the ship") def shipTheseusParadox(N_Of_Planks, state, o_blueprint): if state == o_blueprint: return 0 shipTheseusParadox(N_Of_Planks, state, o_blueprint)