#include <iostream>
using namespace std;
int main() {
//Nama : Muhammad Haeqal Ramadhan
//NIM : 3420230006
cout<<"Tabel Band Favorit "<<endl;
cout<<"--------------------------------------------"<<endl;
cout<<"| No | Nama Band | Genre |"<<endl;
cout<<"--------------------------------------------"<<endl;
cout<<"| 1 | Green Day | Pop Punk |"<<endl;
cout<<"| 2 | Stand Here Alone| Pop Punk |"<<endl;
cout<<"| 3 | Guns N Roses | Rock | "<<endl;
cout<<"--------------------------------------------"<<endl;
return 0;
}