<!DOCTYPE html>
<html>
<body>

<%
sometext="Welcome to our Web Site!!"
response.write(Left(sometext,5))
response.write("<br>")
response.write(Right(sometext,5))
%>


</body>
</html>