int mys()
{
    
char c;
    
int t=0;
    
while(1)
    {
        c
=getchar();
        
if(c!=' '&&c!=10)
            
break;
    }
    t
=c-'0';
    
while(1)
    {
        c
=getchar();
        
if(c==' '||c==10)
            
return t;
        t
*=10;
        t
+=c-'0';
    }
    
return 0;
}