Algorithm/BaekJoon
2257번 : Hello World
히욤이
2019. 1. 24. 00:20
* 문제 출처 : 백준 알고리즘
1 2 3 4 5 6 7 8 9 | public class Main { public static void main(String[] args) { System.out.println("Hello World!"); } } | cs |