class substring
{
public static void main(String args[ ])
{
String str="Welcome";
System.out.println("Given String is "+str);
System.out.println("Substring from 2 to end "+str.substring(2));
System.out.println("Substring from 2 to 4 character "+str.substring(2,4));
}
}