년도 계산은 뺀 숫자에서 +1을 해야합니다.
class Solution { public int solution(int age) { int answer = 2022-age+1; return answer; } }