الرجوع
تسجيل الدخول
public class Main {
    public static void main(String[] args) {
        String s1 = "Hello";
        String s2 = s1;
        s2 = "World";
        System.out.println(s1);
    }
}

What will be the output of the above code?