import shop;
public class Product{
String name;
int priceInCent;
public Product(String name, int price){
this.name = name;
this.priceInCent = price;
}