Java codeup [1028]
프로그래밍/JAVA·2022. 8. 19.
소스코드 더보기 1 2 3 4 5 6 7 8 9 10 11 import java.util.Scanner; public class Main{ public static void main(String[] args){ Scanner s = new Scanner(System.in); long n = s.nextLong(); System.out.println(n); } } Colored by Color Scripter cs