class Solution {
public:
    /**
     * 
     * @param n int整型 
     * @param m int整型 
     * @return int整型
     */
    int ysf(int n, int m) {
        // write code here
        int i = 1;
        int idx = 0;
        while(i <= n){
            idx = (idx + m) % i;
            ++i;
        }
        return idx + 1;
    }
};

思路:数学计算