无法让 Jgrasp 编译我的代码

Having trouble getting Jgrasp to compile my code

下面是我的代码,它抛出了编译时错误。

import Java.util.Scanner;
class gucci{
    public static void main(String args[]){
        Scanner ice = new Scanner(System.in);

        int lost = 5;
        int sauce = 18;
        lost++;   
        System.out.println(lost);
        Stytem.out.println(lost);
    }
} 

这里的代码有什么问题?

请找出正确的。比较代码以更好地理解:

 import java.util.Scanner; // not the Java.util.Scanner
    public class Gucci{
        public static void main(String args[]){
            Scanner ice = new Scanner(System.in);
            int lost = 5;
            int sauce = 18;
            lost++;   
            System.out.println(lost);
            System.out.println(lost); // not the Stytem.out.println(lost);
        }
    }