#include<bits/stdc++.h> using namespace std; int main() { int a,b,c; cin>>a; b=1; c=a+1; for(int i=1;i<a;i++){ b=(c-1)*b; c--; } cout<<a<<"!="<<b; }