#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 | Dewa 19 | Rock |"<<endl;
cout<<"| 2 | Nct 127 | K-Pop |"<<endl;
cout<<"| 3 | Hivi! | Pop |"<<endl;
cout<<"-------------------------------"<<endl;
cout<<"Nama: Syifa Asih Nirwana"<<endl;
cout<<"NIM : 1620230019";
return 0;
}