Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
goelp14
GitHub Repository: goelp14/easyctf-iv-problems
Path: blob/master/prog_input/generator.py
650 views
1
case = int(input())
2
3
names = ["Fred", "Mary", "Cameron", "Pam", "Josh"]
4
5
if case < 5:
6
print(names[case])
7
else:
8
print("Michael")
9
10