코딩 테스트/Python - 백준 단계별로 풀어보기

백준 18108번 자바 - 불기 연도가 주어질 때 이를 서기 연도로 바꿔 주는 프로그램을 작성하시오.

kms152000 2024. 4. 3. 22:35
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
    	Scanner scanner = new Scanner(System.in);
        
        int year = scanner.nextInt();
        int result = year - 543;
        System.out.print(result);
    }
}