더 좋은 문제 풀이가 있거나 궁금하신 점이 있다면 편하게 댓글 남겨주세요!
18108번 1998년생인 내가 태국에서는 2541년생?!
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int input_years = sc.nextInt();
int ouput_years = input_years -543;
System.out.println(ouput_years);
}
}