using System;
public class Program
{
public static void Main()
int a= 77;
char b=(char)a;
int k= 97;
char c=(char)k;
int f= 114;
char d=(char)f;
int l= 111;
char e=(char)l;
int t= 109;
char n=(char)t;
Console.Write(b);
Console.Write(c);
Console.Write(d);
Console.Write(e);
Console.Write(n);
}