

public class TypePromo1
{
    public static void main(String[] args)
    {
        short a = 3;   // Change the data type and run
        byte b = 4;   // Change the data type and run
        
        TypeTester.printType( a + b );
    }
}


