-module(helloworld). 
-import(lists,[sum/1]). 
-export([start/0]). 

start() -> 
   Lst1 = [5,6,4], 
   io:fwrite("~p~n",[sum(Lst1)]).