Submission #168545


Source Code Expand

#include <cassert>
#include <cctype>
#include <cmath>
#include <climits>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>

#include <algorithm>
#include <bitset>
#include <deque>
#include <functional>
#include <iterator>
#include <list>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <stack>
#include <string>
#include <utility>
#include <vector>

#include <fstream>
#include <iostream>
#include <sstream>

#include <iomanip>

using namespace std;

typedef pair<int, int> pint;
typedef vector<int> vint;
typedef long long ll;

#define ALL(c) (c).begin(),(c).end()
#define RALL(c) (c).rbegin(),(c).rend()
#define SORT(c) sort(ALL(c))

#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define REP(i,n)  for(int i=0;i<(n);++i)

#define NEXTP(c) next_permutation(ALL(c))
#define SUM(c) accumulate(ALL(c),0)
#define MP( a, b ) make_pair( ( a ), ( b ) )

#define DUMP(x)  cerr << #x << " = " << (x) << endl;

#define INF 1000000000 // 10^9
const double EPS = 1e-10;

//Template End

int main(){
    int a,b;
    cin>>a>>b;
    cout<<b-a+`<<endl;
    return 0;
}

Submission Info

Submission Time
Task A - アルバム
User wat_shun
Language C++ (G++ 4.6.4)
Score 0
Code Size 1163 Byte
Status CE

Compile Error

./Main.cpp:58:5: error: stray ‘`’ in program
./Main.cpp: In function ‘int main()’:
./Main.cpp:58:16: error: expected primary-expression before ‘<<’ token