Ответ:
1)x = int(input())
print("Ответ: ", (3*x + 2)**3/(2*x+2))
2)a = 19
b = 5
x = 19 % 5
print(x)
3)a = 18
b = 3
z = 18 // 3
print(z)
4)a = 2
print(a**3)
5)
a = int(input())
b = int(input())
c = a * b
print("Ответ: "+ str(c))
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
1)x = int(input())
print("Ответ: ", (3*x + 2)**3/(2*x+2))
2)a = 19
b = 5
x = 19 % 5
print(x)
3)a = 18
b = 3
z = 18 // 3
print(z)
4)a = 2
print(a**3)
5)
a = int(input())
b = int(input())
c = a * b
print("Ответ: "+ str(c))