moreover's picture
first commit
acd4009
raw
history blame contribute delete
107 Bytes
package main
import "fmt"
func main() {
var a, b int;
fmt.Scan(&a);
fmt.Scan(&b);
fmt.Println(a+b);
}