public class count { public static void main(String[] args) { print(); }// end of main static void print() { for(int i=1; i<=500;i++) { System.out.println(i+". I will not throw paper airplanes in the class."); }// end of for end(); }// end of print static void end() { System.exit(0); }//end of end }// end of class