a,b = input() a,b = int(a),int(b) if a*b==a+b: print("Yes") else: print("No")
------Input------ 111 11 ------Answer----- No ------Your output-----