Автор - student125697
Ответ:
#include <iostream>
using namespace std;
int main()
{
int n, ans = 1;
cin >> n;
int i;
for(i = 0; i <= n; i += 5)
ans *= 4;
cout << ans / 4;
}
Объяснение:
Ответ:
Python 3.7.2
import math
N = int(input())
print(4 ** math.floor(N / 5))