each line, there is x, and y representing the coordinates (x, y) of a point.
For each point in the input, write the number written at that point or write No Number if there is none.
3 4 2 6 6 3 4
6 12 No Number
#n = int(input())
自测数据和提交数据不一样
a = 2
b = 0
c1 = 0
c = 0
#for i in range(n):
x, y = list(map(int, input().split()))
if x == 0 and y == 0:
print(0)
elif x == 2 and y == 0:
print(2)
elif x-2 == y:
while y:
y -= 1
c += 1
if c % 2 != 0:
a += 1
else:
a += 3
print(a)
elif x == y:
# y -= 1
while y:
y -= 1
c1 += 1
if c1 % 2 != 0:
b += 1
else:
b += 3
print(b)
else:
print("No Number")