public class NewClass2 {

public static void main(String[] args) {

int x = 100;
int y = 20;

assert y > x;
}
}