/*
#include <stdio.h>
int main()
{
printf("Hello");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello World");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello\nWorld");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\'Hello\'");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"Hello World\"");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"!@#$%%^&*()\"");
return 0;
}
*/
//#include <stdio.h>
//
//int main()
//{
// printf("\"C:\\Download\\hello.cpp\"");
// return 0;
//}
/*
정수
int %d
long long int %lld
실수
float %f
double %lf
문자
char %c
*/
/*
#include<stdio.h>
int main() {
int x, y;
//200 300
scanf("%d %d", &x, &y);
printf("%d", x+y);
// x = 10;
// x = x + 20;
//
// printf("%d\n", x);
// x += 50;
//
// printf("%d", x);
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
int n;
scanf("%d",&n);
printf("%d",n);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
char x;
scanf("%c",&x);
printf("%c",x);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
float x;
scanf("%f",&x);
printf("%f",x);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a,b;
scanf("%d%d", &a, &b);
printf("%d %d", a, b);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
char x, y;
scanf("%c %c", &x, &y);
printf("%c %c", y, x);
return 0;
}
*/
//#include <stdio.h>
//int main()
//{
// double x;
// scanf("%lf", &x);
// printf("%.2lf", x);
// return 0;
//}
/*
산술연산자
+, -, *, /
+: 10+20 = 30
> Overflow:
/: 나누기 연산자
> 정수 / 정수 = 몫
> 5 / 2 = 2.5( X )
> 5 / 2 = 2 ( O ): Type issue
> (double/float)정수 / 정수 = 실수
%: 나머지 연산자
> 7 % 2 => 1
x = a / 10
y = a % 10
*/
#include<stdio.h>
int main()
{
long long int a, b;
scanf("%lld %lld", &a, &b);
printf("%lld", a+b);
return 0;
}
// ~ 1046