using System;
struct ornek {
public int i;
}
public class Program
{
public static void Main()
ornek x=new ornek();
ornek y;
x.i=9;
y=x;
y.i=5;
Console.ReadLine(x.i)(x.i);