Untitled

mail@pastecode.io avatar
unknown
c_cpp
15 days ago
122 B
0
Indexable
Never
#include <iostream>
#include <string>
using namespace std;

int main()
{
	int n;
	cin >> n;
	cout << n * n * n;
}
Leave a Comment