using System;
public class Program
{
public static void Main()
double b = 1.5;
double m = 0.1;
double n = 1;
double h = 0.1;
double x, y;
string s = "";
for (x = m; x <= n; x += h)
if (b * x < 0.6)
y = Math.Sin(b * x) + Math.Cos(b * x);
else if (b * x > 0.9)
y = b * Math.Pow(x, 3) + Math.Exp(b + Math.Pow(x, 5));
else
y = 1;
s += string.Format("{0,8:F1} {1,10:F4}\r\n", x, y);
}
Console.WriteLine(s);