Create 3 separate vectors and then conduct a calculation
cat("Vector A","\n")
## Vector A
(A <- c(2,-3,4,1,0))
## [1] 2 -3 4 1 0
cat("\n","Vector B","\n")
##
## Vector B
(B <- c(1,2,-5,2,4))
## [1] 1 2 -5 2 4
cat("\n","Vector C","\n")
##
## Vector C
(C <- c(-1,3,0,1,2))
## [1] -1 3 0 1 2
cat("\n","Output for Exercise C10: Chapter V","\n")
##
## Output for Exercise C10: Chapter V
(output <- 4*A + -2*B + C)
## [1] 5 -13 26 1 -6