I just want to create a int with more than 128 bytes
You just want something that is not possible in the languages that you've chosen.
It is simply not possible to define custom integer types in these languages. Classes (structs) are the only custom types that can be defined (and type aliases if you count those).
What you can do to represent such large integers is a large array of smaller integer.
I don't want to use any Array
Then you've run out of options.
... at least for now. In future, if a proposal such as n2472 is adopted in to C++ standard, this may become possible.
in asm we can create any type with any bytes I just ask about this can I use asm in c++ for creating that?
If you write your program in assembly, then you can do whatever your assembler allows. But you cannot introduce types into C++ in asm
declarations.