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