#!/usr/bin/env python3 def main(): m, d = (int(z) for z in input().split()) print(m + d) if __name__ == "__main__": main()