Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- using ull = unsigned long long;
- ull id_cnv(ull id)
- {
- return ((1ULL << 56) | (1ULL << 52) | (1ULL << 32) | id);
- }
- int main(int argc, char **argv)
- {
- cout << id_cnv(229879789) << endl;
- cout << 76561198190145517 << endl;
- system("pause");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment