ggvenn: how to import the delimited txt files correctly?

It's a bit difficult to read a screen shot but your first command is incorrect. . You probably want something like

a  <- read.delim( "80F")

or just

a  <- read.csv("80F")

assuming R is set to your working dictionary.

Have a look at FAQ: How to do a minimal reproducible example ( reprex ) for beginners for some suggestions on asking questions here.