Files
2025-08-03 20:24:38 -07:00

11 lines
240 B
Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
def solveIt():
# return a string that is the screen name you would like
return 'poprhythm'
if __name__ == '__main__':
print 'This script submits the screen name: ' + solveIt() + '\n'