#include<iostream>
using namespace std;

 


int main()
{
    int out,n,x,y;
    cin>>n;
    while(n--)
    {
        cin>>x>>y;
        if(x==y||x-y==2)
        {
            if(x%2==0)
                out=x+y;
            else
                out=x+y-1;
            cout<<out<<endl;
        }
        else
            cout<<"No Number"<<endl;
    }
    return 0;
}

 

posted on 2010-05-12 10:55  VRS  阅读(116)  评论(0)    收藏  举报