public class C1 { public static void main(String[] args) { for(int i = 0; i < 6; i++) { for(int j = 0; j < 6; j++) { if(true) assert j == 1; } } int x = i; } }