using System;
class Example
{
static int _score;
public static int Score {
get {
_score++;
return _score;
}
}
}
class Program
{
static void Main() {
Console.WriteLine(Example.Score);
Console.WriteLine(Example.Score);
Console.WriteLine(Example.Score);
Console.WriteLine(Example.Score);
Console.WriteLine(Example.Score);
}
}
/*
run:
1
2
3
4
5
*/