#include<stdio.h> int main() { unsigned long a,b,c; scanf("%ld%ld",&a,&b); c=a+b; printf("c=%ld",c); return 0; }