Suppose myList1 and myList2 are two lists. Write Python code that will print all pairs x, y where x is in myList1 and y is in myList2, one per line and separated by a comma. For example, when myList1=['a','b'] and myList2=[1,2], a possible output is a1, a2, b1, b2.