        public int squareMethod(int x)
        {
            return x * x;
        }
        public float squareMethod(float x)
        {
            return x * x;
        }
