diff options
Diffstat (limited to 'problems/gameofquarters/attachments/template.py')
-rw-r--r-- | problems/gameofquarters/attachments/template.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/problems/gameofquarters/attachments/template.py b/problems/gameofquarters/attachments/template.py new file mode 100644 index 0000000..461fe27 --- /dev/null +++ b/problems/gameofquarters/attachments/template.py @@ -0,0 +1,11 @@ +import sys +import math + +number_of_rounds = int(input()) +for i in range(number_of_rounds): + alice_sequence, bob_sequence, round_tosses = input().split() + +# Write an answer using print +# To debug: print("Debug messages...", file=sys.stderr, flush=True) + +print("WINNER!") |