#include <iostream>
#include <stdio.h>
#include <string.h>
int main()
{
int i, j;
char s[100];
scanf("%s", &s);
scanf("%d", &i);
printf("%c\n", s[i-1]);
return 0;
}
'코딩테스트' 카테고리의 다른 글
과제 : 백준 아스키 코드 (0) | 2024.09.18 |
---|---|
과제 : 백준 문자열 (0) | 2024.09.18 |
LeetCode two.sum 배열 합산 반환 (0) | 2024.09.18 |
1부터 N 까지 각각 / 3의 갯수는? (Small) (0) | 2024.09.18 |
N! 에서의 0의 갯수 (소인수분해 응용) (0) | 2024.09.18 |