11212 - 求两位整数各个位上的数字和

#include<bits/stdc++.h>
using namespace std;
int main(){
  	int a;
  	cin>>a;
  	cout<<a/10+a%10;
	return 0;
}