#include <iostream>
#include <string>
using namespace std;
int main() {
int d = 11;
cout << d << endl; // 11
string b = "";
while (d) {
b = to_string(d % 2) + b;
d /= 2;
}
cout << b << endl; // 1011
return 0;
}
#include <iostream>
#include <string>
using namespace std;
int main() {
int value = 11;
cout << value << endl; // 11
char str1[10];
_itoa_s(value, str1, 2);
cout << str1 << endl; // 1011
return 0;
}