using System;
public class Program {
public static void Main() {
object x = "100.0";
Console.WriteLine($"|{x, 16}|{x, 8}|{x, 4}|{x, 6}|{x, 15}");
}