using System;
namespace Golf {
public class MyScores {
public static void Main() {
int averageScore = 60;
int score = 59;
if(score > averageScore) {
Console.WriteLine("You are higher than your average");
}
else {
Console.WriteLine("You beat your average score!");