What will this small program output?
int a = 3;
int b = 1;
int c = 7;
int x = 10;

if (a <= b) {
x = 15; }

else
if (a <= c) {
x = 13; }

else
if (b <= c) {
x = 17; }

else {
x = 12; }

(x);