using System;
public class Program
{
public static void Main()
string text_script = "Close on a portrait of the handsome prince -- as the BEAST'S gaint paw slashes it.";
int Close_Up = text_script.IndexOf("Close");
int On = text_script.IndexOf("on");
Console.WriteLine(On);
}