This commit is contained in:
2023-06-24 16:16:50 +02:00
parent 3e5dd1f610
commit c53cfe35c2

3
gcvwr.py Normal file
View File

@@ -0,0 +1,3 @@
g, t, n = map(int, input().split())
w = map(int, input().split())
print(int((g - t) * 0.9 - sum(w)))