From 284e10cb3b16c66d5a2dab0257629c9f178e7bda Mon Sep 17 00:00:00 2001 From: rl544 <111494264+rl544@users.noreply.github.com> Date: Wed, 30 Nov 2022 15:44:23 +0900 Subject: [PATCH] =?UTF-8?q?uploaded=20at=202022.=2011.=2030.=20=EC=98=A4?= =?UTF-8?q?=ED=9B=84=203:44:22?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- baekjoon/1000/solutionundefined | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 baekjoon/1000/solutionundefined diff --git a/baekjoon/1000/solutionundefined b/baekjoon/1000/solutionundefined new file mode 100644 index 0000000..c82f03d --- /dev/null +++ b/baekjoon/1000/solutionundefined @@ -0,0 +1,10 @@ +// [문제 링크]: https://www.acmicpc.net/problem/1000 + +import java.util.Scanner; +public class Main { + public static void main (String[] args) { + Scanner sc = new Scanner(System.in); + System.out.print(sc.nextInt()+sc.nextInt()); + sc.close(); + } +} \ No newline at end of file