Run ID:96665

提交时间:2024-11-09 11:39:14

#include<bits/stdc++.h> using namespace std; int main(){ for(int b=0;b<=100;b++){ if(b%2==1){ cout<<b<<endl; } } return 0; }