-module(o). -export([m/0]). m()->m(82). m(0)->e; m(X)->io:format("~b",[X]),m(X-1).