luckYrat's library.

This documentation is automatically generated by competitive-verifier/competitive-verifier


:warning: go/template.go

Depends on

Required by

Code

package main

import (
	"bufio"
	"fmt"
	"os"
)

func main() {
	r := bufio.NewReader(os.Stdin)
	w := bufio.NewWriter(os.Stdout)
	defer w.Flush()
	fmt.Fscan(r)

}
Back to top page