#include<stdio.h> int main() { char c1,c2,c3; c1='F'; c2='F'; c3='T'; printf("%c%c%c\n",c1,c2,c3); return 0; }