public class Test {
static void run(Object obj) {
if (obj instanceof Integer a || obj instanceof String b || obj instanceof String[] c) {
System.out.print(c);
}
}
}
