Program two : What is the out put of this program?

Words
21
Reading
1 min
Listen
Play
9y

package simleprogram;
public class FactorialNumber{

public static void main(String[] args){
int num=20,i=1;
do{
if(num%i==0){
System.out.format(" %d ", i);
}
i++;
}while(i<=num);
}
}

number-factorial-calculation.jpg

Program two : What is the out put of this program? | Ecency