using System;
using static System.Console;
public class Program
{
static double pointToPixelRelation = 1.333333;
public static void Main()
for (short i = 1; i < 360; i++)
WriteLine($"<x:Double x:Key=\"{i}pt\">{i * pointToPixelRelation}</x:Double>");
}