What is the output of this code 
class code
    {
        public static void main(String args[]) 
        {
            int x;
            x = 28;
            {
         int y = 19;
         System.out.print(x + " " + y);
            }
            System.out.println(x + " " + y);
        } 
    }

Posted on by