using System;
public class Test {
public static void Main(string[] args) {
char c = (char)255;
int x = c + c;
Console.WriteLine(x);
}