import java.util.Stack; class Program01 { public static void main(String [] args) { Stack verem = new Stack(); int a = 5; verem.push(a); } }