public class P18 { public static void main(String[] _args) { int a = 5, b, f; b = f = a; while (b-- > 1) f *= b; System.out.println(a + "! = " + f); } }