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