Untitled

 avatar
unknown
c_cpp
a year ago
122 B
1
Indexable
#include <iostream>
#include <string>
using namespace std;

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