nord vpnnord vpn
Ad

Untitled

a
 avatar
user_0563559
c_cpp
22 days ago
180 B
1
Indexable
Never
#include <iostream>
using namespace std;


int schet(int a) {
	int sum = a * a * a;
	cout << sum;
	return(sum);
}

int main()
{
	int a;

	cin >> a;

	schet(a);

}
Leave a Comment


nord vpnnord vpn
Ad