백준
[8741] 이진수 합
Jcoder
2018. 9. 3. 19:23
#include <iostream>#include <string>using namespace std;int main(){int n;cin >> n;string front(n, '1');string back(n - 1, '0');cout << front.c_str() << back.c_str() << endl;}