package com.codegym.task.task01.task0108;

/*
2 + 3 = 5

*/

public class Solution {
    public static void main(String[] args) {
        int a = 3, b = 2;

        //System.out.print("two");
        System.out.print(b);
        System.out.print(" plus ");
        //System.out.print(" minus ");
        System.out.print(a);
        //System.out.print("three");
        System.out.print(" is equal to ");
        //System.out.print(" equals ");
        //System.out.print("five");
        System.out.print(b + a);
    }
}
This is what I had an error on: Don't change or add commands responsible for output. You can comment them out.