public class MyClass {
public static void main(String[] s) throws IOException {
BufferedReader reader1 = new BufferedReader(new InputStreamReader(System.in));
int result = Integer.parseInt(reader1.readLine().replace(" ","").trim()) ;
System.out.println("result = " + result);
}
}