public class Sub
{
public static void main(String[] args)
{
int f =Integer.parseInt(args[1]);
int t = Integer.parseInt(args[2]);

String sub = args[0].substring(f , t + 1);
System.out.println(sub);
}
}
//问题很简单了!你大小写错了啊!!!!
Integer 不是integer