-module(helloworld). 
-import(lists,[nthtail/2]). 
-export([start/0]). 

start() -> 
   Lst1 = [1,2,3], 
   io:fwrite("~p~n",[nthtail(2,Lst1)]).