Search

나이 출력

태그
코딩테스트 입문
class Solution { public int solution(int age) { return 2022 - age + 1; } }
Java
복사