#include int main() { int p = 1; for (int i = 2; i <= 10; i++) p *= i; printf("%d\n", p); return 0; }