Ответ:
n1_1,n1_2 = map(int,input("Type Form: a b.\nEnter number a,b #1: ").split())
n2_1,n2_2 = map(float,input("Type Form: a b.\nEnter number a,b #2: ").split())
ex1 = (n1_1+n1_2)**2
ex2 = (n2_1-n2_2)**2
print(f"Result formula (a+b)²: {ex1}.\nResult formula (a-b)²: {ex2}.")
Объяснение:
Надеюсь что помогла.
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
Ответ:
n1_1,n1_2 = map(int,input("Type Form: a b.\nEnter number a,b #1: ").split())
n2_1,n2_2 = map(float,input("Type Form: a b.\nEnter number a,b #2: ").split())
ex1 = (n1_1+n1_2)**2
ex2 = (n2_1-n2_2)**2
print(f"Result formula (a+b)²: {ex1}.\nResult formula (a-b)²: {ex2}.")
Объяснение:
Надеюсь что помогла.