#include <iostream> 

#define SUB(a, b) a - b 

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