str1 <- "زبان" str2 <- "R" combined <- paste(str1, str2, sep = " ") # خروجی: "زبان R" combined_no_space <- paste0(str1, str2) # خروجی: "زبانR"