Hi, everyone, Unfortunately I don;t get it why the task still shows me an error during confirmation. Whatever input I enter - I also seem to have correct result in output - please help. code:
package com.codegym.task.task01.task0131;
import java.io.*;
/*
More conversions

*/

public class Solution {
    public static void main(String[] args)  throws Exception {
        System.out.println(getFeetFromInches(243));
    }

    public static int getFeetFromInches(int inches)  throws Exception {
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        String inchinput = reader.readLine();
        int intinchinput = Integer.parseInt(inchinput);
        int feet =  (int) intinchinput / 12;
        return feet;
    }
}