#include #include using namespace std; int main() { cout << "\n" << "\n" << "\n" << "\n" << "\n\n" << "\n" << "

\n" << "\n";; const string lyricsjap[]{ "時計台の鐘なんて鳴っていなかった", "鼓動だけが鳴っていた", "鼓動だけを聴いていた", "それだけを信じていた" }; const size_t ichi {size(lyricsjap)}; const string lyricseng[]{ "The clocktower's bell wasnt ringing", "Just a heart beating", "I was just listening to the beat", "I was simply believing in this" }; const size_t ni {size(lyricseng)}; for (size_t i {0}; i < ichi; ++i){ cout << lyricsjap[i] << " " << lyricseng[i] << "
\n"; } cout << "
\n" << "

\n\n" << "\n" << "\n"; return EXIT_SUCCESS; }