def check_identical(test_list1, test_list2):
  res = test_list1 == test_list2
  return (res)