求大佬帮我看看错哪了
166798809782010000000000分解之后是2^10 * 3^10 * 5^10 * 7^10
所以166798809782010000000000整除63!,而不整除62!
然后1个点AC,另一个WA
#include<iostream>
using namespace std;
int main(){
ios::sync_with_stdio(false);
int n;
cin >> n;
if(n >= 63)cout << n-62;
else cout << 0;
return 0;
}