Skip to content

Instantly share code, notes, and snippets.

@Shirataki2
Last active November 24, 2017 13:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Shirataki2/ce43f54e3a11274bdb0ba2e5e26ed9e8 to your computer and use it in GitHub Desktop.
Save Shirataki2/ce43f54e3a11274bdb0ba2e5e26ed9e8 to your computer and use it in GitHub Desktop.
#include "bits/stdc++.h"
using namespace std;
static const int inf = 1<<30;
int main(void){
int h1,h2;
cin >> h1 >> h2;
cout << h1 - h2 << endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment