Submission #111956


Source Code Expand

#define _USE_MATH_DEFINES
#define INF 0x3f3f3f3f
#include <cstdio>
#include <iostream>
#include <sstream>
#include <cmath>
#include <cstdlib>
#include <algorithm>
#include <queue>
#include <stack>
#include <limits>
#include <map>
#include <string>
#include <cstring>
#include <set>
#include <deque>
#include <bitset>
#include <list>
#include <cctype>
#include <utility>
 
using namespace std;
 
typedef long long ll;
typedef pair <int,int> P;
typedef pair <int,P > PP;
 
const int tx[] = {0,1,1,0};
const int ty[] = {0,0,1,1};
 
static const double EPS = 1e-10;

int main(){
  int a,b;
  while(~scanf("%d %d"&a,&b)){
    printf("%d\n",max(a,b));
  }
}

Submission Info

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

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:35:24: error: invalid operands of types ‘const char [6]’ and ‘int’ to binary ‘operator&’