using System;
class Program {
static void Main() {
int a = 5;
int b = 6;
double h = 0.1;
for (double x = a; x <= b; x += h)
Console.WriteLine($"F({x}) = {Math.Sin(x) - Math.Cos(x)}");
}
using System;
class Program {
static void Main() {
int a = 5;
int b = 6;
double h = 0.1;
for (double x = a; x <= b; x += h)
Console.WriteLine($"F({x}) = {Math.Sin(x) - Math.Cos(x)}");
}
}