Submission

Status:

PPPPPPPPPP

Subtask/Task Score:

100/100

Score: 100

User: kiattisaksanburee

Problemset: ASCII

Language: cpp

Time: 0.002 second

Submitted On: 2026-03-18 08:46:05

#include <iostream>

using namespace std;

int main() {
  char n; cin >> n;
  int ascii = n;
  cout << ascii;

  return 0;
}