<HTML> <HEAD> <TITLE>Using Relational Operators</TITLE> </HEAD> <BODY> <H1>Using Relational Operators</H1> <% int temperature = 70; if (temperature < 80) { out.println("Just right."); } %> </BODY> </HTML>