#include <bits/stdc++.h>
using namespace std;
int main(){
	char b='A';
	int a;
	a=int('M'-64);
	b=char('A'+17);
	cout<<a<<endl;
	cout<<b;


	return 0;
}

Copy

  • 8 次查看

0 comments

No comments so far...