#y=0x+c
s = input()
n = len(s)
indx = 2
digit = 0
m = 0
c = 0
neg_m = False
neg_c = False
if s[2] == '-':
neg_m = True
indx += 1
while s[indx] != 'x':
digit = int(s[indx])
m *= 10
m += digit
indx += 1
if (neg_m):
m *= (-1)
indx += 1
if indx<n:
if s[indx]== '-':
neg_c = True
indx += 1
else:
indx += 1
while indx < n:
digit = int(s[indx])
c *= 10
c += digit
indx += 1
if neg_c:
c *= (-1)
for _ in range(int(input())):
x, y = map(int, input().split())
if y == (m * x + c):
print("YES")
else:
print("NO")