" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <cstdlib>
using namespace std;
int main(){
for(int i=1001; i< 1100; i+=2)
cout << i << " ";
system("pause");
return 0;
}