#include <iostream>
using namespace std;
int main() {
//Tabel Band Favorit
cout << "Tabel Band Favorit"<<endl;
cout << "------------------------------------"<<endl;
cout << "| No | Nama Band | Genre |"<<endl;
cout << "------------------------------------"<<endl;
cout << "| 1 | Hivi! | Pop |"<<endl;
cout << "| 2 | Maliq & D'Essentials | Pop |"<<endl;
cout << "| 3 | Twice | K-Pop |"<<endl;
cout << "------------------------------------"<<endl;
return 0;
//Nama : Nur Izzati Istiqlal
//NIM : 1620230004
}