#include<iostream> #include<cstdio> using namespace std; int main(){ int a,s,b; b=1; cin>>a; for(int i=1;i<=a;i++){ b*=i; } cout<<b; }