Adding numbers

Report a typo

Write a program that reads two integers, adds them up, and prints the result.

Sample Input 1:

-10 10

Sample Output 1:

0
Write a program in Go
package main

import "fmt"

func main() {
// Write your code here
}
___

Create a free account to access the full topic