What will be the output?
int a=20,b=3; if(a<10) a=a-5; b=b+5; System.out.println(a+" "+b);
20 3
15 8
20 8
Syntax Error