// 0x000 This may be a "bomb was set"
// 0x001 Please, do not try to run this process.
// 0x002 Otherwise, all the consequences will not be responsible for !
// 0x003 Perhaps this is not a new game .
// 0x004 I think this is interesting .
// 0x005 Start Code!
#include<iostream>
int main()
{
unsigned int *pBomb = new unsigned int;
*pBomb = 9999;
delete pBomb;
unsigned long int *pBombt = new unsigned long int;
*pBombt = 999999999;
*pBomb = 1;
delete pBombt;
return 0;
}
int main()
{
unsigned int *pBomb = new unsigned int;
*pBomb = 9999;
delete pBomb;
unsigned long int *pBombt = new unsigned long int;
*pBombt = 999999999;
*pBomb = 1;
delete pBombt;
return 0;
}