#include <iostream> 

#define SUB(a, b) ((a) - (b)) 

int main() 
{ 
  std::cout << SUB(10, 5) << std::endl; 
} 
