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