package com.iluwatar;
public class App {
public static void main( String[] args ) {
Stew stew = new Stew(1, 2, 3, 4);
stew.mix();
stew.taste();
}