Browse Source

Smallest multiple in Go

Adel Qalieh 9 years ago
parent
commit
bf7c8922fd
1 changed files with 7 additions and 0 deletions
  1. 7 0
      problem05.go

+ 7 - 0
problem05.go

@@ -0,0 +1,7 @@
+package main
+
+import "fmt"
+
+func main() {
+	fmt.Println(2520 * 11 * 13 * 17 * 19 * 2)
+}