class ForLoopTest { //For•¶ public static void main(String[] args) { for (int i=0; i<=4; i++) { System.out.print("No."); System.out.println(i); } } }