What will be the output of the following program?
import java.util.*;
public class Discount {
public static void main(String[] args) {
String output;
Formatter convert = new Formatter();
convert.format("Quantity %o,discount %%%d ", 6, 25);
output = convert.toString();
System.out.println(output);
}
}