lcd.clear();
lcd.print(inputArray[0]); // there it prints right number
lcd.print("x");
lcd.print(inputArray[1]); // there it prints right number
delay(2000);
minutes2 = (inputArray[0], DEC);
minutes3 = (inputArray[1], DEC);
minutes = minutes2 + minutes3;
lcd.clear();
lcd.print(inputArray[0]); // there still prints right number
lcd.print("+");
lcd.print(inputArray[1]); // there still prints right number
lcd.print("=");
lcd.print(minutes, DEC); // but there is wrong number
lcd.print("Set time of"); //first row on LCD display
lcd.setCursor(0,1); // set the cursor to second row on LCD
lcd.print("detonation"); // second row on LCD, it continues to first row: so at all it will print: Set time of detonation in two rows
but the problem is this: when i put two functions to math it turns classic numbers (5 or 6 or 7 or 9 etc.) to decimal numbers like 5 is 53
Think you have to learn some basics first before finalizing your project as I see the remarks made to help you are not yet inderstood by you.
So the best thing to do right now is to go through the tutorial section and refernce section to understand something about array's integers and chars etc.