/**
* Author: Sergey Kopeliovich (Burunduk30@gmail.com)
*/
import java.util.*;
import java.io.*;
public class sum_sk {
StringTokenizer tok = new StringTokenizer("");
BufferedReader in;
String next() throws IOException {
while (!tok.hasMoreElements())
tok = new StringTokenizer(in.readLine());
return tok.nextToken();
}
int nextInt() throws IOException {
return Integer.parseInt(next());
}
static public void main(String[] args) throws Exception {
new sum_sk().run();
}
public void run() throws Exception {
final String NAME = "sum";
in = new BufferedReader(new FileReader(NAME + ".in"));
PrintWriter out = new PrintWriter(new File(NAME + ".out"));
int a = nextInt();
int b = nextInt();
out.println(a + b);
out.close();
}
}