using System;
class DataTypesProgram
{
static void Main()
{
int Qty;
double Total_Price, Price_Per_Piece;
[Link]("Enter the pieces of apple: ");
Qty = Convert.ToInt32([Link]());
[Link]("Enter the total price of apple: ");
Total_Price = [Link]([Link]());
Price_Per_Piece = Total_Price / Qty;
[Link]("\nThe total price of apple is: " + Total_Price);
[Link]("The value of the original price per piece is: " +
Price_Per_Piece);
[Link]("The value of converted price is: " +
[Link](Price_Per_Piece));
[Link]("\nPress any key to exit...");
[Link]();
}
}