/* Correct all of the errors in the following code.
 * There are semantic errors as well as syntax errors.
 * The purpose of this class is to determine whether the first of
 * the two integer values entered on the command line is a multiple
 * of the second integer value entered on the command line.
 * The class must also print the ratio created by dividing the first
 * value by the second value.
 */
 public class Debug3{

  public status int main(String[] args){
    int num 1 = Integer.parseInt(args[1]);
    int num2 = Integer.parseInt(args[2]);
    float x = num1/num2;
    if (num1 = x*num2)
      System.out.println(num1, "is a multiple of", num2);
      System.out.println("The first number is a multiple of the second number");
    else
      System.out.println("num1/num2 = ", x);
  }
}


