-module(a).
-compile(export_all).

d(_,<<>>) ->
    one;
d(0,<<D>>) ->
    two.
