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