def find_max(test_list):
  res = max(int(j) for i in test_list for j in i)
  return (res)