eolymp
bolt
Try our new interface for solving problems
Problems

Java Fraction 1

Java Fraction 1

Time limit 1 second
Memory limit 128 MiB

Implement a class Fraction that uses a wrapper class MyLong.

class MyLong
{
  private long a; // private variable
  MyLong(long a) // Constructor
  public String toString() // Print the variable of type MyLong
}

class Fraction
{
  MyLong numerator, denominator; // numerator and denominator
  Fraction() // Constructor
  Fraction (MyLong numerator, MyLong denominator) // Constructor
  public String toString() // Print the variable of type Fraction
}

Input data

Two integers a and b (-10^18a, b10^18).

Output data

Print the fraction in the form a / b.

Examples

Input example #1
3 4
Output example #1
3/4
Author Michael Medvedev