graph G {

/* Graph Attributes */
graph [rankdir = LR];

/* Node Attributes */
node [shape = circle, fillcolor = white, style = filled, fontname = "Times-Italic"];

/* Edge Attributes */
edge [fontname = "Times-Italic", arrowsize = 0.75, fontsize = 16];

/* Nodes */
0 [label = "0"];
1 [label = "1"];
2 [label = "2"];
3 [label = "3"];
4 [label = "4"];

/* Edges */
0 -- 4 [];
0 -- 3 [];
0 -- 2 [];
0 -- 1 [];
1 -- 3 [];
2 -- 4 [];

}
