package com.javarush.task.pro.task03.task0318; import java.util.Scanner; /* Био-мясо */ public class Solution { public static String NOT_YET = "Искусственное мясо еще не готово."; public static String DONE = "Искусственное мясо готово."; public static String HORRIBLY_DONE = "Искусственное мясо превратилось в мясного монстра!"; public static void main(String[] args) { Scanner times = new Scanner(System.in); int minuts = times.nextInt(); int hours = times.nextInt(); if (hours == 0 && minuts < 30 ){ System.out.println(NOT_YET); } else if (hours == 0 && minuts == 30){ System.out.println(DONE); } else{ System.out.println(HORRIBLY_DONE); } } }