Submission #3628298


Source Code Expand

#include<bits/stdc++.h>
using namespace std;

int main(void){
  ll x,y;
  cin>>x>>y;
  cout<<max(x,y)<<endl;
  return 0;
}

Submission Info

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

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:5:3: error: ‘ll’ was not declared in this scope
   ll x,y;
   ^
./Main.cpp:6:8: error: ‘x’ was not declared in this scope
   cin>>x>>y;
        ^
./Main.cpp:6:11: error: ‘y’ was not declared in this scope
   cin>>x>>y;
           ^