// 1 כל הסעיפים
using System;
class Point{
public int x;
public int y;
}
Point p= new Point();
Console.Write("enter a number:");
p.x= int.Parse(Console.ReadLine());
p.y= int.Parse(Console.ReadLine());
Console.WriteLine(p.x);
Console.WriteLine(p.y);