using System;
public class C
{
const int const_int = 1000;
static readonly int static_readonly_int = 1000;
static C(){
static_readonly_int = -1000;
}
public void M(ulong a){
ulong b = a + const_int;
ulong c = a + static_readonly_int;