#include <iostream>
using namespace std;
// Nama : Alvian Rohmadi Anwari
// Nim : 3420230007
int main() {
cout << "Tabel Anime Favoritku "<<endl;
cout << "----------------------------- "<<endl;
cout << "| NO | Nama Anime | Genre | "<<endl;
cout << "------------------------------ "<<endl;
cout << "| 1 | One Piece | Action | "<<endl;
cout << "| 2 | Black Clover | Action | "<<endl;
cout << "| 2 | AOT | Action | "<<endl;
cout << "------------------------------ "<<endl;
return 0;
}