
public class ProblemSolving {
  
  
  public static void main(String[] args) { 
/*
    for(int i=1; i<=100; i++){
      if(i % 2 ==0){
        System.out.println(i);
      }
    }
    
    for(int i=2; i<=100; i+=2)
      System.out.println(i);
  
    /*
    for(int i=1; i<=100; i++){
      if(i%15==0)
        System.out.println("FIZZBUZZ");
      else if(i%3==0)
        System.out.println("FIZZ");
      else if(i%5==0)
        System.out.println("BUZZ");
      else
        System.out.println(i);
      
    }
    
    
    
    for(int i=1; i<=100; i++){
      if(i%3==0)
        System.out.print("FIZZ");
      if(i%5==0)
        System.out.print("BUZZ");
      if(i%3!=0 && i%5!=0)
        System.out.print(i);
      
      System.out.println();
      
    }
    
    for(int i=100; i>=1; i--) {
      if(i%2 ==1) {
        System.out.println(i);
      }
    }
    System.out.print("\n\n\n");
    for(int i=99; i>=1; i = i-2)
      System.out.println(i);
    
  */  
    for(int i=1; i<=10; i++) {
      for(int j=1; j<=10; j++) {
        System.out.printf("%3d ", i*j);
      }
      System.out.println();
    }
    
    
  }
}
