countries = ("China", "Japan", "India", "England", "France") # Unpack the tuple into two tuples first_tuple = countries[:3] second_tuple = countries[3:] print("First Tuple:", first_tuple) print("Second Tuple:", second_tuple)