Below is my code which is throwing compile-time error.
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);
}
}
What is wrong with the code here?