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