#include <stdio.h>#include <stdlib.h>int main (void) { char c1, c2; c1 = getchar (); c2 = c1-32; putchar (c2); system ("pause"); return 0;}