function useArguments(...args) {
  return args.reduce((pre, current)=> pre+current, 0)
}