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