Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <numeric>
- #include <ranges>
- #include <vector>
- int bar() {
- int x = 123;
- int c = 0;
- while (x) c += x & 1, x >>= 1;
- return x;
- }
- int buzz = bar();
- int main() {
- }
Advertisement
Add Comment
Please, Sign In to add comment