From fc7af6cf2e148a3a9fb62eb67d2f384885af2354 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B3=B5=EC=9D=80=EC=84=B1?= Date: Fri, 2 Jan 2026 21:11:01 +0900 Subject: [PATCH] =?UTF-8?q?[BOJ]=20A=20/=20B=20/=20=EB=B8=8C=EB=A1=A0?= =?UTF-8?q?=EC=A6=88=205?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://www.acmicpc.net/problem/1008 --- .../A \353\202\230\353\210\204\352\270\260 B.java" | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 "4st/Eunseong/A \353\202\230\353\210\204\352\270\260 B.java" diff --git "a/4st/Eunseong/A \353\202\230\353\210\204\352\270\260 B.java" "b/4st/Eunseong/A \353\202\230\353\210\204\352\270\260 B.java" new file mode 100644 index 00000000..9936f76e --- /dev/null +++ "b/4st/Eunseong/A \353\202\230\353\210\204\352\270\260 B.java" @@ -0,0 +1,8 @@ +import java.util.Scanner; + +class Main { + public static void main(String args[]) { + Scanner s = new Scanner(System.in); + System.out.print((double)s.nextInt() / s.nextInt()); + } +} \ No newline at end of file