import java.util.*;
import java.lang.*;
import java.io.*;

// The main method must be in a class named "Main".
class Main {
    public static void main(String[] args) {
        byte abc= 56;
        System.out.println(abc);
        char a= 45 ;
        System.out.println(a);
        long ab= 50;
        System.out.println(ab);
        float bc= 3.14f;
        System.out.println(bc);
        String r ="Sarth" ;
        System.out.println(r);
        long q=56;
        long w=125;
        long add=q+w;
        System.out.println(add);
        
    }
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: