Please help
package com.codegym.task.task06.task0610;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Scanner;
public class ConsoleReader {
static Scanner sc = new Scanner(System.in);
public static String readString() throws Exception {
String s = sc.nextLine();
return s;
}
public static int readInt() throws Exception {
int a = sc.nextInt();
return a;
}
public static double readDouble() throws Exception {
double d = sc.nextDouble();
return d;
}
public static boolean readBoolean() throws Exception {
String s = sc.nextLine();
if (s.equals(true)){
return true;}
else if (s.equals(false)){
return false;}
}
public static void main(String[] args) {
}
}