using System;
namespace HelloWorld
{
public class Program
{
public static void Main()
{
String name;
name = "Hand Axe";
String type;
type = "Axe";
float dps;
dps = 3.2f;
string damage;
damage = "2-3";
float aps;
aps = 1.30f;
Console.WriteLine("{0}", name);
Console.WriteLine("{0}", type);
Console.WriteLine("{0} {1}", dps, "Damage Per Second");
Console.WriteLine("{0} {1}", damage , "Damage");
Console.WriteLine("{0:f2} {1}", aps, "Attacks per Second");
}
}
}