import java.util.*; import java.text.*; public class Main { static class ob { String code, name, unit; long price, mount, ship, total, sell; public ob(int i, String name, String unit, long price, long mount){ code = "MH" + String.format("%02d", i); this.name = name; this.unit = unit; this.price = price; this.mount = mount; ship = Math.round((double) price*mount*0.05); total = price*mount + ship; sell = total + Math.round((double)total*0.02); } public String toString() { return code+' '+name+' '+unit+" "+ship+" "+total+" "+sell; } } public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); ArrayList a = new ArrayList<>(); for(int i=0;iSystem.out.println(e)); } }