# Math

// 随机数 (min,max]
function rand(min,max){
    return Math.floor(Math.random()*(max+1-min)+min);
};