Search posts...
class Solution { public int solution(int M, int N) { int answer = M * N - 1; return answer; } }
stupefyee