-
Notifications
You must be signed in to change notification settings - Fork 1
/
acc6p6.py
33 lines (33 loc) · 884 Bytes
/
acc6p6.py
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
songs = {-5 : "A Spoonful of Sugar",
-4: "A to Z",
-3 : "ALGORITHM",
-2 : "Astrogazer",
-1 : "AWAKE",
0: " ",
1: "BLSTR",
2: "Breathe The Air",
3: "Butterfly",
4: "Circle Of Life",
5: "CONGA",
6: "Dance Dance Revolution",
7: "Dead Heat",
8: "DIVE",
9: "DROP OUT",
10: "Electronic or Treat!",
11: "END OF THE CENTURY",
12: "Ev'rybody Wants To Be A Cat",
13: "FOLLOW ME",
14: "Hanabi",
15: "Healing Vision",
16: "Illegal Function Call",
17: "IRON HEART",
18: "Neverland",
19: "New Century",
20: "Out of focus",
21: "RISING FIRE HAWK",
22: "Skywalking",
23: "Star Trail",
24: "The World Ends Now",
25: "Voltississimo"
}
print(songs[int(input())])