Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
deniscostadsc committed Sep 28, 2024
1 parent 450595c commit d5dd59a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions solutions/beecrowd/2968/2968.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import sys
import math
import sys

for line in sys.stdin:
v, n = map(int, line.split())
Expand All @@ -9,9 +9,9 @@
step = v * n / 100 * i

if abs(float(int(step)) - step) < 1e-9:
print(int(step), end="")
print(int(step), end='')
else:
print(math.ceil(step), end="")
print(math.ceil(step), end='')
if i <= 80:
print(end=" ")
print(end=' ')
print()

0 comments on commit d5dd59a

Please sign in to comment.