#include<bits/stdc++.h> using namespace std; int main() { int k; string s; cin>>k>>s; k-=s.size(); cout<<1; while(k--)cout<<'0'; cout<<s; return 0; }