What will be the output of this program?

var number = 5;
var greater_than_zero = number > 0;

if (greater_than_zero){
if (number > 5){
println(number);
}
}

0

5

True

Nothing will print

Nothing will print.