diff --git a/1a9c4e3489d95e107936f6e6f5509abe6222a37a.html b/1a9c4e3489d95e107936f6e6f5509abe6222a37a.html
new file mode 100644
index 0000000..88c8d37
--- /dev/null
+++ b/1a9c4e3489d95e107936f6e6f5509abe6222a37a.html
@@ -0,0 +1,125 @@
+
+
+
+
+
+
+
package main
+
+import (
+ "fmt"
+ "math/rand"
+)
+
+func main() {
+ if tossCoin() == "heads" {
+ fmt.Println("Heads")
+ } else {
+ fmt.Println("Tails")
+ }
+}
+
+func tossCoin() string {
+ if rand.Intn(2) == 0 {
+ return "heads"
+ } else {
+ return "tails"
+ }
+}
+
+
+
+
+
+