int a = 1, b = 2;
b=a + 0*(a=b);
System.out.println(b+" " +a);
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//
public class test {
public test() {
}
public static void main(String[] args) {
byte a = 1;
byte b = 2;
byte var10000 = a;
a = b;
int b1 = var10000 + 0 * b;
System.out.println(b1 + " " + a);
}
}