Submission #1834268


Source Code Expand

#include <iostream>
#include <string>

using namespace std;

int main()
{
	_Longlong a, b;
	cin >> a >> b;

	if (a < b)
	{
		cout << b;
	}
	else
	{
		cout << a;
	}

	return 0;
}

Submission Info

Submission Time
Task A - 正直者
User uedaWT
Language C++14 (GCC 5.4.1)
Score 0
Code Size 199 Byte
Status CE

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:8:2: error: ‘_Longlong’ was not declared in this scope
  _Longlong a, b;
  ^
./Main.cpp:9:9: error: ‘a’ was not declared in this scope
  cin >> a >> b;
         ^
./Main.cpp:9:14: error: ‘b’ was not declared in this scope
  cin >> a >> b;
              ^