안녕하세요. 오늘은 바닥수를 찾아볼 거예요.
https://www.acmicpc.net/problem/30456
그냥 1을 L-1개 출력하고 N을 출력하면 됩니다.
#include <iostream>
using namespace std;
int main(void)
{
ios_base::sync_with_stdio(false); cin.tie(NULL);
int L, N;
cin >> N >> L;
for (int i = 0; i < L - 1; i++) cout << 1;
cout << N;
}
감사합니다.