1digraph TC {
2 node[shape=circle];
3  a
4  b
5  c
6  d
7
8  b -> c
9  b -> d
10  c -> b
11  d -> c
12  d -> a
13}
14