11 lines
144 B
Python
11 lines
144 B
Python
|
import os
|
||
|
|
||
|
def main(message: str) -> None:
|
||
|
print(f"{message}")
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main(input("What would you like to say? "))
|
||
|
|
||
|
|
||
|
|