mirror of
https://github.com/wczffl-503/OI-Codes.git
synced 2025-05-11 00:30:27 +08:00
16 lines
183 B
C++
16 lines
183 B
C++
#include <iostream>
|
|
using namespace std;
|
|
int main(){
|
|
int a,i;
|
|
cin >>a;
|
|
for(i=1;i<=a;i+=2){
|
|
cout <<i<<" ";
|
|
}
|
|
cout <<endl;
|
|
for(i=a;i>=1;i-=3){
|
|
cout <<i<<" ";
|
|
}
|
|
return 0;
|
|
}
|
|
|