/**
 * CS1010 AY2011/2 Semester 2 Lab1 Ex2
 *
 * sap.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)
{
    float sap;

    printf("Enter MCs attempted and current CAP: ");

    printf("Enter MCs attempting and target CAP: ");

    printf("Mission impossible!\n");
    printf("SAP >= %.2f\n", sap);

    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

