Created
November 3, 2019 19:42
-
-
Save samuelloza/ab469d836e516f085f27cd951de546ee to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Suma dos numeros A+B | |
| // go run SumaDosNumeros.go | |
| package main | |
| import "fmt" | |
| func main() { | |
| var i int | |
| fmt.Scan(&i) | |
| var j int | |
| fmt.Scan(&j) | |
| fmt.Printf("%d",i+j) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment