boj step 11 rework

This commit is contained in:
2024-04-05 02:23:36 +09:00
parent 4fd6c73be1
commit 948b520052
6 changed files with 59 additions and 0 deletions

8
zeta_C/completed/24266.c Normal file
View File

@@ -0,0 +1,8 @@
#include <stdio.h>
int main() {
long long n;
scanf("%lld", &n);
printf("%lld\n%d\n", n * n * n, 3);
return 0;
}