import java.util.*;
import java.lang.*;
import java.io.*;


  
 // create our new class
    class School {
            int id;
            String name;
        
       public void setName(String n){
         name = n;}
        public String getName() {
        return name;
            /* 
    class  {
        int x;
    }  void set x(int x){
        this.x = x;
    }   void get x(){
        return x;
    }     hum x ko hi define kr ske h this lga kr 
    */
    }
    }




// The main method must be in a class named "Main".
class Main {
   
    public static void main(String[] args) {
       System.out.println("Helll");     

        School Student1 = new School();
     // Student1.name = "vikas2";

        Student1.setName("vikas");
        System.out.println( Student1.getName());
        
        
    
    
    
    
    
    
    
    
    
    
    }
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: