solve sum

This commit is contained in:
Sergey Paramoshkin 2023-10-03 19:32:29 +03:00
parent a0a2d3c6e2
commit e21166e048
No known key found for this signature in database
GPG key ID: 2DDC9CC04EC41558

View file

@ -3,5 +3,5 @@
package sum
func Sum(a, b int64) int64 {
return 0
return a + b
}