using System;
public class Program
{
public static void Main()
Console.WriteLine ("въведи 1 число");
double x,y; string s;
s = Console.ReadLine();
x = double.Parse (s);
Console.WriteLine ("въведи 2-ро число");
y = double.Parse(s);
double Q;
if (x > y)
Q = x;
x = y;
y = Q;
}
Console.WriteLine (x) ;
Console.WriteLine (y) ;