#!/usr/bin/env python # -*- coding: utf-8 -*- def main(): a, b = map(int, input().split()) print(a - (-b)) if __name__ == '__main__': main()