10 lines
275 B
Plaintext
10 lines
275 B
Plaintext
|
|
// [문제 링크]: 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();
|
||
|
|
}
|
||
|
|
}
|