using System;
class Program
{
public static void GetRandomValue(out int x, out int y) {
var random = new Random();
x = random.Next(10000, 99999);
y = random.Next(10000, 99999);
}
static void Main() {
int a, b;
GetRandomValue(out a, out b);
Console.WriteLine($"{a}, {b}");
}
}
/*
run:
75397, 37400
*/