/*
6) The two digit lucky number for the day is >>>17
*/
import org.apache.commons.lang.RandomStringUtils;
publicclass RandomStringUtilsTrial {
publicstaticvoid main(String[] args) {
// Begin Lottery code
System.out.print("6) The two digit lucky number for the day is >>>");
System.out.println(RandomStringUtils.randomNumeric(2));
// End Lottery code
}
}