public class Main {
public static void main(String[] args) {
// Declaring and initializing a string
String message = "We offer mushroom spores intended for microscopy and taxonomy purposes only. Images provided are for informational and educational reference only and originate from cultivators and labs outside of the USA. Buying magic mushroom spores is legal in the United States. However, the cultivation of magic mushrooms, which includes all psilocybin and psilocin-containing mushroom species, is illegal in many countries, including the United States. Please check your local regulations.";
// Printing the string
System.out.println(message);
}
}