#include using namespace std; long long fact(long long v){ if(v==0)return 1LL; return v*fact(v-1); } int main(){ int a,b; cin>>a>>b; cout<