Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package main
- import "fmt"
- func main() {
- var architectName string
- fmt.Scanln(&architectName)
- var projectCount int
- fmt.Scanln(&projectCount)
- fmt.Printf("The architect %s will need %d hours to complete %d project/s.", architectName, projectCount * 3, projectCount)
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement