Computer Science, asked by shwetaarorapentagon, 5 months ago

There were total 4000 chairs to be decorated, 465 chairs were decorated with

white flowers and 256 chairs with red flower, then write a program to find out how

many chairs are left to be decorated?​

Answers

Answered by singh2randhir007
0

Answer:

4000-465

= 3535-256

3279 chairs were left

Answered by jai696
2

\huge\red{\mid{\fbox{\tt{Using\: Python\: 3}}\mid}}

chairs = 4000

white_dec_chairs = 465

red_dec_chairs = 256

print(f"Chairs left: {chairs - (red_dec_chairs + white_dec_chairs)}")

\large\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Similar questions