#include <iostream>
using namespace std;

#ifndef TESTE
#define TESTE

double cubo(double a) {
    return a * a * a;
}

#endif // TESTE

int main() {
	// your code goes here
	return 0;
}

//https://pt.stackoverflow.com/q/226328/101