Run ID:142037
提交时间:2025-12-29 17:06:34
#include<iostream> using namespace std; int main(){ int n,m; cin>>n>>m; for(m;m<=n;m=m+m){ cout<<m<<" "; } }