mrlolthe1st

Untitled

Sep 24th, 2023
620
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | None | 0 0
  1. #include <iostream>
  2. #include <numeric>
  3. #include <ranges>
  4. #include <vector>
  5.  
  6. int bar() {
  7.   int x = 123;
  8.   int c = 0;
  9.   while (x) c += x & 1, x >>= 1;
  10.   return x;
  11. }
  12. int buzz = bar();
  13. int main() {
  14. }
Advertisement
Add Comment
Please, Sign In to add comment