#33348: C++ ANS 簡單


yp11151097@yphs.tp.edu.tw (908-30施耀登)


#include<bits/stdc++.h>
using namespace std;
main(){
int a,b=0;
while(cin>>a){
    for(int i=1;i<=a;i++){
        b++;
        cout<<b<<". I don't say swear words!"<<endl;
    }
}