#46455: cpp 超級簡單解


1121232@stu.wghs.tp.edu.tw (Ian911436)


#include <bits/stdc++.h>
using namespace std;
 
int main() {
    int n;
string m[12] = {"Aspect of Combat", "Ringmaster Scarr", "Night Rose", "Aspect of Speed", "Shrouded Striker", "Unstoppable", "Aspect of Siphon", "Infernal Defenses", "The Machinist", "Shogun X", "Megalo Don", "Aspect of Agility"};
while(cin >> n){
    cout << m[n%12] << endl;
}
}