Write a R Program to Add Two Vectors

fv <- 1:4
cat("The first vector is: ", fv, "\n")
sv <- 5:8
cat("The second vector is: ", sv, "\n")
add <- fv + SV
cat("The final vector is: ", add)