#include <iostream>
using namespace std;
int main() {
std::cout << "Enter the variables" << std::endl;
float a, m, n, j, s;
cout << "a= , m= , n= , j=" << endl;
cin >> a >> m >> n >> j;
cout << "s= " << (6 * a / m * n - pow((24 * j + 32), (9 * m + 1)));
}
Comments
Leave a comment