<Below this line, add a link to the EXACT exercise that you are stuck at.>
https://www.codecademy.com/en/courses/learn-java/lessons/introduction-to-java/exercises/equality-operators?action=resume
<In what way does your code behave incorrectly? Include ALL error messages.>
```public class EqualityOperators {
public static void main(String args) {
boolean V = 2>1;
boolean A = 3<4;
System.out.println(V == A);
}
}
<do not remove the three backticks above>