#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int tot_page,comp_day;
printf("Enter total page of book ::");
scanf("%d",&tot_page);
comp_day=tot_page/34;
printf("%d days to complete this
book.",comp_day);
getch();
}