[BOJ/C++] 27866 문자와 문자열

mani·2023년 5월 22일
0

baekjoon_step

목록 보기
43/73

문자열을 입력받고 문자열의 특정 위치를 읽어 봅시다.

#include <iostream>
#include <string>

using namespace std;

int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);

	string input;
	int i;
	cin >> input >> i;
	cout << input[i - 1];

	return 0;
}
profile
log

0개의 댓글