using System;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
const UInt64 OFFSET = 0x0;
Memory AC = new Memory("ac_client");
const int bulletCount = AC.Read<int>(AC.getBaseAddress() + OFFSET);
Console.WriteLine(bulletCount);
AC.Write<int>(AC.getBaseAddress() + OFFSET, bulletCount + 1);
}
}
}