From 0b2ac62a0d45a435bab5cf77b9b9978431ed6965 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B3=B5=EC=9D=80=EC=84=B1?= Date: Sun, 1 Mar 2026 19:19:18 +0900 Subject: [PATCH] =?UTF-8?q?[BOJ]=20=EB=AC=B8=EC=9E=90=EC=99=80=20=EB=AC=B8?= =?UTF-8?q?=EC=9E=90=EC=97=B4=20/=20=EB=B8=8C=EB=A1=A0=EC=A6=88=20V?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://www.acmicpc.net/problem/27866 --- ...54\231\200 \353\254\270\354\236\220\354\227\264.java" | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 "4st/Eunseong/\353\254\270\354\236\220\354\231\200 \353\254\270\354\236\220\354\227\264.java" diff --git "a/4st/Eunseong/\353\254\270\354\236\220\354\231\200 \353\254\270\354\236\220\354\227\264.java" "b/4st/Eunseong/\353\254\270\354\236\220\354\231\200 \353\254\270\354\236\220\354\227\264.java" new file mode 100644 index 00000000..6302b939 --- /dev/null +++ "b/4st/Eunseong/\353\254\270\354\236\220\354\231\200 \353\254\270\354\236\220\354\227\264.java" @@ -0,0 +1,9 @@ +import java.util.Scanner; + +public class Main { + public static void main(String args[]) { + Scanner s = new Scanner(System.in); + + System.out.println(s.nextLine().charAt(s.nextInt() - 1)); + } +} \ No newline at end of file