#include <stdio.h> int main () { int n; scanf("%d",&n); int fact = 1; for ( int i=1; i<=n; i++){ fact*=i; } printf("%d!=%d\n",n,fact); return 0; }