#include <stdio.h> int main() { int x = 5; int y = 6; int sum = x + y; printf("%d", sum); return 0; }