Search posts...
class Solution { public int solution(int age) { int answer = (2022 - age) + 1; return answer; } }
goho