Untitled

 avatar
unknown
plain_text
3 years ago
171 B
2
Indexable
#include <iostream>
#include <string>
#include <cmath>
using namespace std;
int main() {
	char i;
	cin >> i;
	if (isdigit(i)) cout << "yes";
	else cout << "no";
}
Editor is loading...