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