A tiny and easy-to-implement syntax highlighting library that helps developers showcase their code snippets in a nice way.
public class SumOfNumbers1
{
public static void main(String args[])
{
int n1 = 225, n2 = 115, sum;
sum = n1 + n2;
System.out.println("The sum of numbers is: "+sum);
}
}