(1)
a = 352
b = 985
c = 25
d = 3
x = a*b*c*d
print(x)
(2)
a = 362
b = 1206
c = 215554
d = 6957
e = 628
x = a+b+c+d+e
Если нужно вводить свои значения, то:
a = int(input())
b = int(input())
c = int(input())
d = int(input())
e = int(input())
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
(1)
a = 352
b = 985
c = 25
d = 3
x = a*b*c*d
print(x)
(2)
a = 362
b = 1206
c = 215554
d = 6957
e = 628
x = a+b+c+d+e
print(x)
Если нужно вводить свои значения, то:
(1)
a = int(input())
b = int(input())
c = int(input())
d = int(input())
x = a*b*c*d
print(x)
(2)
a = int(input())
b = int(input())
c = int(input())
d = int(input())
e = int(input())
x = a+b+c+d+e
print(x)