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