문제 풀기/C#
4. 나이 출력
kagan-draca
2025. 1. 13. 13:16
using System;
public class Solution {
public int solution(int age) {
return 2022 - age + 1;
}
}