Skip to content

Instantly share code, notes, and snippets.

@MZAWeb
Created December 26, 2023 02:47
Show Gist options
  • Save MZAWeb/e59886bae9227c8a7aeb0b9c6428aa82 to your computer and use it in GitHub Desktop.
Save MZAWeb/e59886bae9227c8a7aeb0b9c6428aa82 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python3
import sys
import json
import random
urgency = sys.stdin.readline()
added_task = json.loads(sys.stdin.readline())
print(float(urgency)+random.uniform(0.0, 5.0))
sys.exit(0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment