Submission

Status:

PPPPPPPPPP

Subtask/Task Score:

100/100

Score: 100

User: cyblox_boi

Problemset: ASCII

Language: cpp

Time: 0.003 second

Submitted On: 2025-12-27 21:34:05

#include <iostream>
using namespace std;

int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    char character;
    cin >> character;

    cout << (int)character << '\n';

    return 0;
}