Unverified Commit 6b302e90 authored by Xeonacid's avatar Xeonacid Committed by GitHub
Browse files

Update prime.md

parent 75978039
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -246,10 +246,10 @@ void dfs(int depth, ULL temp, ULL num, int up) {
}

int main() {
  while (scanf("%lld", &n) != EOF) {
  while (scanf("%llu", &n) != EOF) {
    ans_num = 0;
    dfs(0, 1, 1, 60);
    printf("%lld\n", ans);
    printf("%llu\n", ans);
  }
  return 0;
}