코드업[CodeUp] 1039번 풀이
by mini_min코드업[CodeUp] 1039번 풀이 : 정수 2개를 입력받아 합 출력하기
import java.util.Scanner; public class _1039 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long a = sc.nextLong(); long b = sc.nextLong(); System.out.println(a+b); sc.close(); } }
블로그의 정보
개발자 미니민의 개발로그
mini_min