using System;
public class Program
{
public static void Main()
int maxScore = 100;
Console.WriteLine("Inset how many points you have: ");
int score = int.Parse(Console.ReadLine());
float percent = ((float)score/maxScore) * 100;
Console.WriteLine("The percent is: " + percent + "%");
}