using System;
public class Program
{
public static void Main()
float S, P, D, R;
bool A, O;
float X = float.Parse(Console.ReadLine());
float Y = float.Parse(Console.ReadLine());
bool a = bool.Parse(Console.ReadLine());
bool b = bool.Parse(Console.ReadLine());
// S, P, D, R arithmetic operations
// A, O logical operations
// Display the results
Console.WriteLine(S);
Console.WriteLine(P);
Console.WriteLine(D);
Console.WriteLine(R);
Console.WriteLine(A);
Console.WriteLine(O);
}