int main() {
  __asm {
             mov eax, 3      
             jmp Important 
             mov eax, 33
  Important: mov ecx, 6
             add eax, ecx  ; // eax = ?
  }
  return 0;
}
