博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDOJ 2101 A + B Problem Too
阅读量:7164 次
发布时间:2019-06-29

本文共 329 字,大约阅读时间需要 1 分钟。

// HDOJ 2101 A + B Problem Too // @author:    bos// @date:    2012.2.14 #include 
int main() { int a, b; while(scanf("%d%d", &a, &b)!= EOF) { if((a+ b)% 86== 0) printf("yes\n"); else printf("no\n"); } return 0; }

转载于:https://www.cnblogs.com/ibosong/archive/2012/02/14/2351215.html

你可能感兴趣的文章