When I run my code, the error I get says "incompatible types: char cannot be converted to a string"
public class Credit {
    public static void main(String[] args) {
        long numberLong = Comp122.getLong("Number: ");
        String number = numberLong + "";
        System.out.println(Integer.parseInt(number.charAt(0)) * 2 + Integer.parseInt(number.charAt(1)) * 2);
        System.out.println("VISA");
    }
    
}
 
     
     
    