/*Schreibe ein Programm zu Find Factorial of Given no. */
      
     class Factorial{
      
     
   public static void main(String args[]){
      
     
   int num = Integer.parseInt(args[0]); // Argument als Befehlszeile nehmen
      
     
   int result = 1;
     
     
   while(Zahl>0){
      
     
   Ergebnis = Ergebnis * Zahl;
     
     
   Anzahl--;
     
     
   }
      
        
     
System.out.printl von Gegebener Nr. Ist : "+Ergebnis);
      
     
   }
      
     
}