Filter the output with comments

Report a typo

Given a program that prints numbers. Comment several lines so that the program prints only three following numbers:

3
4
5

Sample Input 1:


Sample Output 1:

3
4
5
Write a program in Go
package main

import "fmt"

func main() {
fmt.Println("1")
/*fmt.Println("2")
fmt.Println("3")*/
fmt.Println("4")
// fmt.Println("5")
fmt.Println("6")
fmt.Println("7")
}
___

Create a free account to access the full topic