@@ -0,0 +1,9 @@
+type
+ trec = record
+ data : longint;
+ end;
+ prec = ^trec;
+
+begin
+ writeln(longint(@prec(0)^.data));
+end.