def multiple_to_single(L):
  x = int("".join(map(str, L)))
  return x