Skip to content

Commit

Permalink
Submission Accepted on the Beecrowd !
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitrimarinho committed Apr 11, 2023
1 parent 23fa419 commit 52b561c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Begginer/Python Codes/2029 - Reservatório de Mel.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,12 @@
# Link: https://www.beecrowd.com.br/judge/pt/problems/view/2029

while True:

try:

V, D = float(input()), float(input())
AREA = (3.14 * (D/2)**2)
ALTURA = V / AREA
print(f'ALTURA = {ALTURA:.2f}')
print(f'AREA = {AREA:.2f}')

except EOFError:
break

0 comments on commit 52b561c

Please sign in to comment.