mirror of
https://github.com/wczffl-503/OI-Codes.git
synced 2025-05-10 16:20:27 +08:00
16 lines
228 B
C++
16 lines
228 B
C++
#include <iostream>
|
|
#include <iomanip>
|
|
#include <cstring>
|
|
#include <cstdio>
|
|
#include <ctime>
|
|
using namespace std;
|
|
int main(){
|
|
char a[100]={"I AK IOI"};
|
|
int b;
|
|
cin >>b;
|
|
for(int i=1;i<=b;i++){
|
|
cout <<a<<" ";
|
|
}
|
|
return 0;
|
|
}
|