#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
    int a;
    int b;
    cin>>a>>b;
    int c;
    c=a+b;
    cout<<c%100;
    return 0;
}

1.setw(n)控制输出的字段长度,在n小于应输出的字段个数时,该输出多少输出多少与n无关

2.setfill('字符')填充剩下的空格(如果1和2都不写啥都不补)