#include using namespace std; //WRITE A FIUMCTIOM isPrime that takes a single integer and returns boolean //WRITE A FIUMCTIOM toPower that takes 2 integer named input and power // and returns the input to the power int main() { cout << "Is 7 prime " << isPrime( 7 ) << endl ; cout << "Is 7 prime " << isPrime( 14 ) << endl ; cout << "Is 7 prime " << toPower(2, 3) << endl ; cout << "Is 7 prime " << toPower(2, 0) << endl ; }