#include<stdio.h>int main(){unsigned char ch;FILE *fp;fp=fopen("trial", "r");while((ch = getc(fp))!=EOF)printf("%c", ch);fclose(fp);return 0;}

class Person{private int age;private Person(){age = 24;}}public class Test{public static void main(String[] args){Person p = new Person();System.out.println(p.age);}}