public class ParameterTest1 {
   public static void main(String [] args) {
      test2(1, 1);
      test2(2, 5);
      test2(10, 3);
   }
   public static void test2 (int n, int m) {// parameters m and n
      // first loop
      for (int i = 1; i<=n; i++ ) {
         System.out.print("o");  
      }
      System.out.println();
   }
}
      // second loop
   
      // after loops
      /*
      for (int j = 1; j<=m; j++ ) {         
            System.out.print("-");
         }
         System.out.print("o");
   
      System.out.println("");
   */
   //}
//}