Write a program that will multiply the sum of 5 and 6 by 57.3 and output the result | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Write a program that will multiply the sum of 5 and 6 by 57.3 and output the result

Can anyone help me with this math problem

6th Jan 2022, 9:48 PM
hasansastark
3 Answers
+ 4
* calculate the sum of 5 and 6 * multiply by 57.3 * use print() for output
6th Jan 2022, 9:57 PM
Lisa
Lisa - avatar
+ 1
Just like Lisa said, it should look something like this. res = 5+6 res *= 57.3 print (res)
6th Jan 2022, 10:00 PM
Chigozie Anyaeji 🇳🇬
Chigozie Anyaeji 🇳🇬 - avatar