public static void Main()
button b1=new button(10,100,"green");
button b2=new button(12);
Console.WriteLine(b1.issamesize(b2));
public button(int num,int size,string color)
public void addtosize(int x)
public bool issamesize(button other)
if (this.size==other.size)