OneCompiler

First

94

Example heading with h2 size

Example heading with h3 size

Following is sample java code.

int i = 10;
if(i>0){
    System.out.println('positive');
}
#include <iostream>

template<class T, class U> requires(T a, U b) { a + b } auto add(const T& a, const U& b) -> decltype(a+b) { return a+b; }


int main()
{
  std::cout << add(10, 20);
}