문제링크 - 프로그래머스 - 나이 출력
class Solution { public int solution(int age) { int answer = 2023 - age; return answer; } }