R Program to add two vectors and print the result on the console By: Chaitra Created: 04/03/2026 16:24:28 Last modified: 04/03/2026 16:24:28 Program x <- c(1, 2, 3) y <- c(4, 5, 6) sum <- x + y print(sum) Output [1] 5 7 9