(python) consider a pair of integers (a,b). The following operations can be performed on (a,b) in any order, zero or more times. (a,b) -> (a + b, b), (a,b) -> (a, a + b). Return a string that denotes whether or not (a,b) can be converted to (c,d) by performing the operation zero or more times.