#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int hour_rent,no_hour,bill;
printf("Enter per hour rent ::");
scanf("%d",&hour_rent);
printf("Enter total hour of stay of customer at
hotel ::");
scanf("%d",&no_hour);
bill=no_hour*hour_rent;
printf("Bill of customer is %d",bill);
getch();
}