#include<bits/stdc++.h> using namespace std; int main() { unsigned long long n,sum=1; cin>>n; for(int i=1;i<=n;i++){ sum*=i; } cout<<sum; }