You would only use `-dm` if you want to run a command in a screen session and not enter it interactively
`-S` is just to give the session a usable name so you can reconnect to it again easily later
If you want to use it interactively and don't want to give it a human readable name, you can omit all of those arguments safely.
For example, if you just want to start up `screen` to run the command, say, `/path/to/longTime` and you don't want to watch it run you could do it either as
screen -dmS longSession /path/to/longTime
or you could do
screen -S longSession
$ /path/to/longTime
`ctrl``a``d`
Both would accomplish the same thing, but one is both easier to script and a bit less typing.