Write a NumPy program to convert a list and tuple into arrays. Return the converted arrays.
Example 1:
Input: [1, 2, 3, 4, 5], (6, 7, 8, 9, 10)
Output: array([1, 2, 3, 4, 5]), array([ 6, 7, 8, 9, 10])
Example 2:
Input: [10, 20, 30, 40, 50], (60, 70, 80, 90, 100)
Output: array([10, 20, 30, 40, 50]), array([ 60, 70, 80, 90, 100])