using static System.Console;
public static void Main() {
var vetor = new Vetor(3, 4);
WriteLine($"X = {vetor2.X}, Y = {vetor2.Y}");
public Vetor(float X, float Y) {
public static Vetor operator *(Vetor left, float right) => new Vetor(left.X * right, left.Y * right);