> import java.util.Stack;
>
[quoted text clipped - 6 lines]
>
> at HanoiTower.main(HanoiTower.java:24)
The generics syntax wants a class name (a subclass of Object) between <...>,
but "int" is a primitive type, not a subclass of Object.
You should therefore use
Stack<Integer>
instead of
Stack<int>

Signature
"Thomas:Fritsch$ops.de".replace(':', '.').replace('$', '@')