from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def main():
print("Hello from student-manage-system!")
if __name__ == "__main__":
main()