/**
 * CS1010 AY2011/2 Semester 2 Lab1 Ex3
 *
 * packing.c
 * <Fill in a description of this program>
 *
 * <Type your name here>
 * <Type your discussion group here>
 */

#include <stdio.h>

// Write your function prototype below (and remove this comment!)

int main(void)
{
    int max_slabs;

    printf("Enter dimension of tray: ");

    printf("Enter dimension of slab: ");

    printf("Maximum number of slabs = %d\n", max_slabs);

    return 0;
}

// Add your function below (and remove this comment!)
// Every function should be preceded with a comment
// that describes what the function does.

// use of function in this exericse is ENCOURAGED, but not compulsory

