#include<bits/stdc++.h> using namespace std; int main(){ int n,m=1; cin>>n; for(int i=1;i<=n;i++){ m*=i; }cout<<n<<"!="<<m; return 0; }