def flatten_tuple(test_list):
  res = ' '.join([idx for tup in test_list for idx in tup])
  return (res)