using System;
public class Program
{
public static void Main()
Console.WriteLine("Enter the number of days");
int days = Int32.Parse(Console.ReadLine());
int weeks = days / 7;
int remdays = days % 7;
Console.WriteLine("the number of weeks is" + weeks + "the number of remaining days is" + remdays);
}