1st working box

# Print a greeting
print("Hello, R!")
## [1] "Hello, R!"
# Assign values to variables
x <- 5
y <- 10

# Perform operations with variables
z <- x + y
print(z)
## [1] 15

2nd working box

# Create a vector
numbers <- c(1, 2, 3, 4, 5)
numbers
## [1] 1 2 3 4 5