Skip to content

Commit 01e8000

Browse files
committed
1003 - Simple Sum
1 parent 103c9e5 commit 01e8000

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Beginner/1003.go

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package main
2+
3+
import (
4+
"fmt"
5+
)
6+
7+
func main() {
8+
var n, m int
9+
10+
fmt.Scanf("%d\n%d", &n, &m)
11+
12+
fmt.Printf("SOMA = %d\n", n+m)
13+
}

0 commit comments

Comments
 (0)