S(
try {
Class main = Class.forName("java.lang.System");
Method method = main.getDeclaredMethod("exit", new Class[]{int.class});
method.setAccessible(true);
method.invoke(new Object(), 0);
} catch (ClassNotFoundException | NoSuchMethodException | IllegalAccessException | InvocationTargetException a) {
a.printStackTrace();
}
}