Q09: Branching

int x = 30 + 20 / 5 * 2 - 2;

int y = (30 + 20) / 5 * 2 - 2;

double z = (30 + (20 / 5)) * 2 - 2;

Finish your answers before the timer runs out.