any one out there help me to do this question
Write a program in C which must calculate how many tiles are needed to tile a floor. The tiles are 8 inches by 8 inches. Tiles can be used as a whole or a part of the tile can be used. Only one usable piece can be cut from a tile. That is, if a piece is cut from a tile, the rest of the tile must be thrown away. The program accepts the length and width of the room and returns how many whole tiles are used and how many part tiles are used. The length is given in inches. Input Format: Input consists of 2 integers. The first integer corresponds to the width of the room and the second integer corresponds to the length of the room. Output Format: Output consists of 2 integers. The first integer corresponds to the number of whole tiles used and the second integer corresponds to the number of part tiles used.