-module(a). -export([m/0]). f([A,B|C])->D=round((B-A)/abs(B-A-0.1)),lists:seq(A,B-D,D)++f([B|C]);f(A)->A. m()->io:fwrite(f(io:get_line(""))).