#include <iostream>
using namespace std;

int main() {
  try {
    true ? throw 1 : throw 2;
  } catch(int i) {
    cout << "throw : " << i << endl;
  }
}