#include<cstdio>
#include<iostream>
using namespace std;
int main(){
	int a;
	scanf("%d",&a);
	for(int k=31;k>=0;k--){
		cout<<((a>>k)&1)<<" ";
	}
	cout<<endl;
	return 0;
}

 

相关文章:

  • 2022-12-23
  • 2021-10-26
  • 2021-09-21
  • 2021-10-01
  • 2022-12-23
  • 2021-11-13
  • 2022-01-18
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案