-module(a). -export([m/0]). m()->f(2,1). f(11,_)->0;f(N,X)->io:format("~9w * 9 +~3w = ~w ",[X,N,M=9*X+N]),f(N+1,M+X).