Write a program in Python that reads four integers and prints "two pairs" if the input consists of two matching pairs (in some order) and "not two pairs" otherwise. For example, 1 2 2 1 is "two pairs", 1 2 2 3 is "not two pairs", and 2 2 2 2 is "two pairs"