-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathacc6p6.cpp
47 lines (44 loc) · 905 Bytes
/
acc6p6.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#include <iostream>
#define boost() cin.tie(0); cin.sync_with_stdio(0)
using namespace std;
int num;
string answers[31] = {
"A Spoonful of Sugar",
"A to Z",
"ALGORITHM",
"Astrogazer",
"AWAKE",
" ",
"BLSTR",
"Breathe The Air",
"Butterfly",
"Circle Of Life",
"CONGA",
"Dance Dance Revolution",
"Dead Heat",
"DIVE",
"DROP OUT",
"Electronic or Treat!",
"END OF THE CENTURY",
"Ev'rybody Wants To Be A Cat",
"FOLLOW ME",
"Hanabi",
"Healing Vision",
"Illegal Function Call",
"IRON HEART",
"Neverland",
"New Century",
"Out of focus",
"RISING FIRE HAWK",
"Skywalking",
"Star Trail",
"The World Ends Now",
"Voltississimo"};
int main()
{
boost();
cin >> num;
cout << answers[num + 5] << endl;
return 0;
}
// creds to chelsea, shane, kevin, ryman, and others for helping :)