Submission #110691


Source Code Expand

import std.stdio, std.string, std.conv;

void main(){
	int a, b;
	readf("%d %d\n", &a, &b);
	write(a>b?a:b);
}

Submission Info

Submission Time
Task A - 正直者
User diginatu
Language C++ (G++ 4.6.4)
Score 0
Code Size 116 Byte
Status CE

Compile Error

./Main.cpp:1:1: error: ‘import’ does not name a type
./Main.cpp:3:11: error: ‘::main’ must return ‘int’
./Main.cpp: In function ‘int main()’:
./Main.cpp:5:25: error: ‘readf’ was not declared in this scope
./Main.cpp:6:15: error: ‘write’ was not declared in this scope