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