A VCD file ("Value Change Dump" file) is a file which contains all the values of the wires and regs in a simulation over time so that they can be displayed on a waveform display.
You have ticked the "Open EPWave after run" box, so EDA Playground tries to over a waveform display. However, you have not included any code to output a VCD file. The missing code is reported by the error message: $dumpfile("dump.vcd"); $dumpvars;'. These two lines need to be in an initial block in your testbench.
You don't have a testbench at the moment. I'm not sure whether that is because you haven't got round to writing it yet or whether you don't appreciate the need for one. The name of you design module suggests the latter. You do need a testbench: some code that at least drives the inputs of your design so that you can test it. Your design looks like a full adder, so your testbench wants to be driving all combinations of a, b and cin. (Look at some of the simpler Verilog/SystemVerilog examples on EDA Playground for examples of simple testbenches.)