#include<bits/stdc++.h> using namespace std; int js(int x){ if(x==0) return 1; else return x*js(x-1); } int main(){ int x; cin>>x; cout<<x<<"!"<<"="<<js(x)<<endl; return 0; }