What will the following code print? x , y= 3, 7 if y % x == 0: print("Y is of 3 multiples", y//x) else: print("Y is not of 3 multiples", y/x)