Submission #8075449


Source Code Expand

package main

import "fmt"

func main() {
	var x, y int
	fmt.Scan(&x)
	fmt.Scan(&y)
	if x > y {
		fmt.Println(x)
	} else {
		fmt.Println(y)
	}

Submission Info

Submission Time
Task A - 正直者
User kg0r0
Language Go (1.6)
Score 0
Code Size 156 Byte
Status CE

Compile Error

# command-line-arguments
./Main.go:14: syntax error: unexpected EOF, expecting }