/*	Calculates the total resistance of a closed circuit	*/

#include <stdio.h>

#define MAX_RESISTORS 7

int main( void  ) {

	int resistor[MAX_RESISTORS];




	return 0;
}
