using System;
public class Program
{
public static void Main()
Console.WriteLine("Enter the cost price");
string x = Console.ReadLine();
int cp = Int32.Parse(x);
Console.WriteLine("Enter the selling price");
string y = Console.ReadLine();
int sp = Int32.Parse(y);
if (cp > sp)
Console.WriteLine("Profit");
}
else
Console.WriteLine("Loss");