public class ClsAAA
{
int x;
int y;
public int X
{
get{return x;}
set{x=value;}
}
public int Y
{
get{return y;}
set{y=value;}
}
public ClsAAA(){
x=0;
y=0;
}
public int GetSum(){
return X+Y;
}
public int GetDiff(){
return X-Y;
}
public int GetMulti(){
return X*Y;
}
public int GetDevi(){
return X/Y;
}
public int GetMod(){
return X%Y;
}
public int GetMax(){
return X>Y?X:Y;
}
public int GetMin(){
return X>Y?Y:X;
}
}