Can someone help me by showing how to convert this java in HIGH LEVEL ASSEMBLY(HLA).That would be great.

import java.util.Scanner;

public class DollarValueMenu {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Feed me your order as 4 hex digits: ");
String input = scanner.nextLine();

// Extract the individual digits from the input string
int digit1 = Character.digit(input.charAt(0), 16);
int digit2 = Character.digit(input.charAt(1), 16);
int digit3 = Character.digit(input.charAt(2), 16);
int digit4 = Character.digit(input.charAt(3), 16);

// Calculate the cost of each item
int cost1 = digit1;
int cost2 = digit2 * 2;
int cost3 = digit3 * 3;
int cost4 = digit4 * 4;
int cost5 = digit4 * 5;

// Calculate the total order cost
int totalCost = cost1 + cost2 + cost3 + cost4 + cost5;

// Print the item quantities and total cost
System.out.println(digit1 + " $1 item");
System.out.println(digit2 + " $2 item");
System.out.println(digit3 + " $3 item");
System.out.println(digit4 + " $4 item");
System.out.println(digit4 + " $5 item");
System.out.println("Total Order Costs: $" + totalCost);
}
}