getting this error message. "The program should display a string that ends with the sum of the entered numbers."
package com.codegym.task.task05.task0530;
import java.io.*;
/*
Boss, something weird is happening
*/
public class Solution {
public static void main(String[] args) throws Exception {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
int a = reader.read();
int b = reader.read();
int sum = a + b;
String s2="Sum = ";
s2=s2+sum;
System.out.println(s2);
}
}