public static void Main()
Console.WriteLine("give me a number to create a francisco camargo sequence");
x = Convert.ToInt32(Console.ReadLine());
for(int i = 1; i < x; i++)
if((x % 3 == 0) && (x % 5 == 0))
Console.WriteLine("francisco camargo");
Console.WriteLine("francisco");
Console.WriteLine("camargo");
Console.WriteLine(i +" is not divisable by 3 or 5 ");