传说中的水题,too。。。

如果x为偶数,则数字为x+y
如果x为奇数,则数字为x+y-1

#include <iostream>
#include 
<vector>
#include 
<string>
#include 
<math.h>
#include 
<iomanip>
#include 
<stdlib.h>
using namespace std;

int main()
{
    
int n,a,b;
    cin
>>n;
    
while (n>0)
    
{
        cin
>>a>>b;
        
if (a==b||b==a-2)
        
{
            
if (a%2==0)
            
{
                cout
<<a+b<<endl;
            }

            
else
            
{
                cout
<<a+b-1<<endl;
            }

        }

        
else
        
{
            cout
<<"No Number"<<endl;
        }

        n
--;
    }

}