/*
TASK: sqrt
LANG: C++
*/

#include <cstdio>
#include <cmath>
using namespace std;

int main() {
    
    int a, n;
    scanf( "%d %d", &a, &n );
    printf( "2,23\n" );
    
    return 0;
}
