14918번 풀이 [Java]

sua·2022년 8월 20일
0

Baekjoon

목록 보기
121/161
post-thumbnail

문제


풀이

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
				
		int a = sc.nextInt();
		int b = sc.nextInt();
				
		System.out.println(a + b);
	}
}
profile
가보자고

0개의 댓글